Generating Sudoku Boards pt. 1: Structure & Algorithm

Ross Harrison
1 min readMay 1, 2017

--

Part my Sudoku Board Generation Series:
Part 1:
Structure & Algorithm
Part 2: Implementation Comparison
Part 3: Rust for WebAssembly
Part 4: C++ for WebAssembly

I was looking for non-trivial problem as a foil for looking at web assembly, and I decided to write a Sudoku puzzle solver. I ended up writing solutions in Typescript, C++, and Rust. I’ll talk about the differences in implementation and what I learned in future posts. In this post I’ll talk about how I built build a Sudoku puzzle generator, which could easily be converted into a Sudoku puzzle solver

Read More…

--

--