Retoor software development Projects Research SearchXNG
Register Sign In

31 lines
598 B
HTML
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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="sudoku.js"></script>
<style>
body {
background-color: #000;
}
.sudoku {
float: left;
color: hwb(0 20% 80%);
background-color: blue;
}
</style>
<script type="text/javascript">
</script>
</head>
<div id="statistics"></div>
<div id="details"></div>
<body>
</body>
</html>
Reference in New Issue Copy Permalink
f87a0cdc84
sudoku/sudoku4.html
Response time: 372ms
Mail Licenses API