anonOstrich / sudoku

Generate and solve Sudoku
MIT License
0 stars 0 forks source link

Generate sudoku in background process, allow UI to continue seamlessly #1

Open anonOstrich opened 2 years ago

anonOstrich commented 2 years ago

Generating a partially hidden sudoku with a unique solution will take a while (at least seconds). Currently freezes the whole frontend. Offload to a worker thread.

anonOstrich commented 2 years ago

Decided to roll with vanilla Web Workers just to learn the official API in this project