Skip to content

Commit f0a04fa

Browse files
Wosser1sProductionsWosser1sProductions
authored andcommitted
Update README.md
1 parent 6252e80 commit f0a04fa

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
# Sudoku
2-
C program which can solve any sudoku with sizes 4x4, 9x9, 16x16 and 25x25, using a iterative algorithm as described in the code and on http://www.sudokuwiki.org/sudoku.htm ..
2+
C program which can solve any sudoku with sizes 4x4, 9x9, 16x16 and 25x25, using a iterative algorithm as described in the code and <a href=http://www.sudokuwiki.org/sudoku.htm>here</a>.
33

4-
Sudoku's are parsed from input, continuous stream of digits for 4x4 or 9x9 sudoku's and digit separated by a white-space (space or return), both from user input or command line.
4+
Sudoku's are parsed from input, continuous stream of digits for 4x4 or 9x9 sudoku's and digit separated by a white-space (space or return), both from user input or command line.
55

66

7-
_sampleSudokus.txt
7+
<b>_sampleSudokus.txt</b>
88
A list of 9x9 sudoku's for testing purposes, can be run with _testSudokuFromFile.bat
99

10-
16x16-easy.txt
10+
<b>16x16-easy.txt</b>
1111
A 16x16 easy sudoku (copy-paste as user input to test)
1212

13-
16x16-medium.txt
13+
<b>16x16-medium.txt</b>
1414
A 16x16 medium sudoku (copy-paste as user input to test)
1515

16-
25x25-easy.txt
16+
<b>25x25-easy.txt</b>
1717
A 25x25 easy sudoku (copy-paste as user input to test)
1818

19-
20-
Sudoku_1.5_FixedArrayBrackets.c
19+
<b>Sudoku_1.5_FixedArrayBrackets.c</b>
2120
The previous version with fixed array sizes, 9x9 sudokus only.
2221

23-
Sudoku_2.0_DynamicArrayAlloc.c
22+
<b>Sudoku_2.0_DynamicArrayAlloc.c</b>
2423
The latest version with memory allocation.

0 commit comments

Comments
 (0)