Registriert seit: 15. Jun 2010
Ort: Augsburg Bayern Süddeutschland
3.470 Beiträge
Delphi XE3 Enterprise
|
AW: Sudoku Array of Array vergleichen
20. Nov 2011, 00:01
statt
Delphi-Quellcode:
VX:= 0;
VY:= 0;
case Block of
0: begin VX:= 0; VY:= 0; end;
1: begin VX:= 3; VY:= 0; end;
2: begin VX:= 6; VY:= 0; end;
3: begin VX:= 0; VY:= 3; end;
4: begin VX:= 3; VY:= 3; end;
5: begin VX:= 6; VY:= 3; end;
6: begin VX:= 0; VY:= 6; end;
7: begin VX:= 3; VY:= 6; end;
8: begin VX:= 6; VY:= 6; end;
end;
beispielsweise
Delphi-Quellcode:
VX := (Block MOD 3) * 3;
VY := Block div 3 * 3;
[/delphi]
Thomas Wassermann H₂♂ Das Problem steckt meistens zwischen den Ohren
DRY DRY KISS
H₂♂ (wenn bei meinen Snipplets nichts anderes angegeben ist Lizenz: WTFPL)
|