Registriert seit: 17. Aug 2011
Ort: Warendorf
112 Beiträge
Delphi 2010 Professional
|
AW: Sudoku Kandidaten löschen
10. Nov 2011, 11:11
was ich bei
Delphi-Quellcode:
//Feld nach Werten durchsuchen und aus Kandidatenliste löschen
For xx := 0 To 2 Do
For yy := 0 To 2 Do Begin
For x := xx * 3 To xx * 3 + 2 Do
For y := yy * 3 To yy * 3 + 2 Do
If aSudoku[x, y] < 10 Then Begin
s := IntToStr(aSudoku[a, b]);
ss := IntToStr(aSudoku[x, y]);
s := Stringreplace(s, ss, '', [rfReplaceAll]);
aSudoku[a, b] := StrToInt(s);
End;
End;
Falsch mache.
Weil dies leider nicht funktioniert
Geändert von Marcel2906 (10. Nov 2011 um 12:58 Uhr)
Grund: Projekt hinzugefügt
|
|
Zitat
|