Add Makefile with build targets for sudoku solver, generator, and coverage reporting. Include NOTES.md explaining sudoku difficulty factors and solving techniques. Add README.md with puzzle examples and generator output. Implement app.js with Grid and Grid2 classes for rendering puzzle data in the browser. Add box.c with functions for box indexing, grid-to-array conversion, and box value extraction. Include footer.h with terminal size detection, cursor positioning, and footer display utilities. Add index.html with CSS grid layout and script loading for the web interface. Include rlib.h as a large utility header library.
7 lines
124 B
C
7 lines
124 B
C
#ifndef SUDOKU_H
|
|
#define SUDOKU_H
|
|
#include "sudoku_header.h"
|
|
#include "sudoku_format.h"
|
|
#include "sudoku_generate.h"
|
|
#endif
|