Dynamic Sudoku Engine

A high-performance, scalable Sudoku generator. This engine leverages optimized Rust algorithms to instantly generate and solve mathematically perfect boards ranging from 4x4 up to massive 16x16 "Hexadoku" grids.

Rust & WebAssembly Backend

Puzzles are generated securely via Next.js Server Actions utilizing a high-speed compiled Rust binary. This protects the browser's main UI thread from freezing during heavy algorithmic execution.

Search Space Optimization

Standard recursive backtracking algorithms freeze when generating 16x16 boards. To bypass this bottleneck, the engine intelligently pre-fills independent diagonal zones, drastically reducing the required time complexity.

Hexadecimal Scaling

By definition, a Sudoku grid requires N unique symbols. When the board scales beyond 9x9, the frontend dynamically shifts to Hexadecimal formatting, seamlessly parsing numbers 1-9 alongside letters A-G.

Mistakes: 0Time: 0:00

Sudoku Matrix

Powered by backend Rust WebAssembly. Fill every row, column, and subgrid box with unique symbols without repeating.

Grid Scale
Difficulty