Sudoku: Difference between revisions

Content added Content deleted
Line 6,648: Line 6,648:
mechanism.
mechanism.


The first solution uses a naive row-based generate-and-test
The first solution uses a naive backtracking algorithm which can readily be modified to include more sophisticated
algorithm, which can readily be modified to include more sophisticated
strategies.
strategies.


Line 6,820: Line 6,819:
6436892672 peak memory footprint
6436892672 peak memory footprint
</pre>
</pre>

=={{header|Julia}}==
=={{header|Julia}}==
<syntaxhighlight lang="julia">function check(i, j)
<syntaxhighlight lang="julia">function check(i, j)