/sudoku_wasm

A WebAssembly sudoku solver running in the browser

Primary LanguageRust

sodoku_wasm

sodoku_wasm is a sudoku solver written in rust. It is compiled to WebAssembly (wasm) and runs in the browser.

Dependencies

Building

See the build.ps1 script.

Project Structure

  • ./dist: Latest release build, to be served via gh-pages.
  • ./solver: A "normal" Rust lib crate implementing a sudoku solver.
  • ./solver-wasm: A thin wrapper around the solver crate, compiled to wasm.
  • ./web: Static web assets implementing a simple sudoku UI that calls solver-wasm to solve the sudoku.