Rules:
- Diagonal Sudoku:
Fill the grid with digits 1 to 9, so that each digit occurs exactly once in every row, every column, every 3x3 box and each of the two main diagonals.
- Non-consecutive:
Orthogonally adjacent cells cannot contain consecutive digits.
Play in sudoku.coachSolution code: Row 1
on 16. February 2025, 18:30 by askaksaksask
A lot of advanced techniques to use here, lots of cycle work and anticonsecutive patterns are needed to help crack the 'miracle' style sparseness. I'm always amazed grids like this solve. This is a cool find. Thank you!