From c965f6542288704948891e1e366899ba20c6890f Mon Sep 17 00:00:00 2001 From: Quinn Date: Tue, 29 Jul 2025 11:49:54 +0200 Subject: [PATCH] wrote documentation for `sudoku_print` and `sudoku_solve_step` --- src/sudoku.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sudoku.h b/src/sudoku.h index 01b0791..79121b1 100644 --- a/src/sudoku.h +++ b/src/sudoku.h @@ -28,8 +28,8 @@ void sudoku_init(u16 *board); /* places `val` at `idx` in `board`, and removes `val` from the possibilities in neighbouring tiles */ void sudoku_place(u16 *board, u16 val, uint idx); -/* TODO: write documentation */ +/* loops through the board, updating all places that only have a single possibility set. */ void sudoku_solve_step(u16 *board); -/* TODO: write documentation */ +/* prints the sudoku board to `stdout` */ void sudoku_print(const u16 *board);