const pagination = new Pagination(ALL_PROJECTS);
pagination.setPage(1);
const page = pagination.getPage();
display(page);
pagination.setPage(1);
// Tag filter
const page = pagination.getPage();
display(page);
Sudoku Solver
I wanted to try making a Sudoku variants solver using a SAT solver library. The live demo has 3 puzzles to demonstrate some of the capabilities of the solver. Heavily inspired by my time solving puzzles
Tags:
7/2/2026Checkers AI
American checkers and a simple alpha-beta search AI. This was a 3 hour coding challenge and probably won't receive any updates :)
Tags:
2/1/20241