Sudoku solver, generator, puzzle ranker, with a React frontend

I’ve finally reached a point where I have a complete end to end Sudoku generator, a human puzzle grader, and an updated React frontend to load generated puzzles. The integration with the solver is still there. The latest version is deployed here: http://sudoku-solver.kevinhooke.com/. I’ve plenty of material to share from this journey, so more posts …

Updating my React Sudoku Solver app: Replacing Flux with Redux (part 2)

In the first part of converting my Sudoku solver React app from using Flux to Redux I looked at creating the Redux Store, Action Creators, reducers, and connecting Components to the Store. In this part 2 I’m taking a look at using redux-thunk for making my api calls. Async API calls are integrated into a …