Retoor software development Projects Research SearchXNG
Register Sign In

16 lines
168 B
C
Raw Normal View History

feat: add initial project scaffolding with Makefile, C sources, web UI, and documentation 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.
2025-01-10 22:53:10 +01:00
#include "rlib.h"
#include "sudoku.h"
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include <pthread.h>
#include "footer.h"
int main() {
return 0;
}
Reference in New Issue Copy Permalink
f87a0cdc84
sudoku/test.c
Response time: 318ms
Mail Licenses API