You've already forked lazarus-ccr
Sudoku: change visula representation of "possible digits" for the sake if better human pattern recognition (as suggested by wp).
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7249 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -49,10 +49,10 @@ function DigitSetToStr(ASet: TDigitSet): String;
|
||||
if (D in ASet) then
|
||||
Result := Char(Ord('0') + D)
|
||||
else
|
||||
Result := 'x';//#32;
|
||||
Result := #32;//'x'
|
||||
end;
|
||||
begin
|
||||
Result := Format('%s-%s-%s'+LineEnding+'%s-%s-%s'+LineEnding+'%s-%s-%s',[Get(1),Get(2),Get(3),Get(4),Get(5),Get(6),Get(7),Get(8),Get(9)]);
|
||||
Result := Format('%s %s %s'+LineEnding+'%s %s %s'+LineEnding+'%s %s %s',[Get(1),Get(2),Get(3),Get(4),Get(5),Get(6),Get(7),Get(8),Get(9)]);
|
||||
end;
|
||||
|
||||
function StrToDigitSet(const S: String): TDigitSet;
|
||||
|
@ -85,6 +85,7 @@
|
||||
<Filename Value="digitseteditor.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ComponentName Value="DigitSetEditorForm"/>
|
||||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="DigitSetEditor"/>
|
||||
</Unit4>
|
||||
|
Reference in New Issue
Block a user