You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,10 @@ Simple 9x9 Sudoku brute force solver with intrinsic parallel candidate set proce
5
5
6
6
It can be upgraded for 16x16 or 25x25 grids.
7
7
8
-
The algorithm was implemented in [Java](https://github.com/nilostolte/Sudoku/blob/main/src), as well as in
9
-
[C](https://github.com/nilostolte/Sudoku/tree/main/C/src). The description below
8
+
The algorithm was implemented in [Java](https://github.com/nilostolte/Sudoku/blob/main/src), in
9
+
[C](https://github.com/nilostolte/Sudoku/tree/main/C/src), as well as in [Zig](https://github.com/nilostolte/Sudoku/tree/main/Zig). The description below
10
10
concerns the Java implementation, even though, the [C implementation](https://github.com/nilostolte/Sudoku/tree/main/C/src)
11
-
is quite similar, but without classes.
11
+
is quite similar, but without classes.[Zig implementation](https://github.com/nilostolte/Sudoku/tree/main/Zig) is similar to C's but with an OOP style stack.
12
12
13
13
The [Windows 64 executable supplied](https://github.com/nilostolte/Sudoku/blob/main/C/bin/sudoku.exe) can be used to
14
14
solve arbitrary grids as decribed in the [documentation](https://github.com/nilostolte/Sudoku/tree/main/C/doc).
0 commit comments