{"id":15818677,"url":"https://github.com/juffalow/sudokujs","last_synced_at":"2026-01-19T06:33:28.116Z","repository":{"id":40945061,"uuid":"101917722","full_name":"juffalow/sudokujs","owner":"juffalow","description":"Sudoku solver in JavaScript","archived":false,"fork":false,"pushed_at":"2022-06-22T08:56:24.000Z","size":311,"stargazers_count":2,"open_issues_count":6,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-06T06:04:21.995Z","etag":null,"topics":["backtracking-algorithm","javascript"],"latest_commit_sha":null,"homepage":"https://sudoku.juffalow.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/juffalow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-30T18:51:27.000Z","updated_at":"2024-02-22T15:38:58.000Z","dependencies_parsed_at":"2022-09-20T18:01:40.610Z","dependency_job_id":null,"html_url":"https://github.com/juffalow/sudokujs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/juffalow/sudokujs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juffalow%2Fsudokujs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juffalow%2Fsudokujs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juffalow%2Fsudokujs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juffalow%2Fsudokujs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juffalow","download_url":"https://codeload.github.com/juffalow/sudokujs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juffalow%2Fsudokujs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28562405,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T03:31:16.861Z","status":"ssl_error","status_checked_at":"2026-01-19T03:31:15.069Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["backtracking-algorithm","javascript"],"created_at":"2024-10-05T06:04:22.955Z","updated_at":"2026-01-19T06:33:28.098Z","avatar_url":"https://github.com/juffalow.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sudoku solver in JavaScript ( using backtracking )\n\n\n## Install\n\n```\n$ yarn\n\n# or if you use npm\n\n$ npm install\n```\n\n## Test\n\n```\n$ yarn run test\n\n# or if you use npm\n\n$ npm test\n```\n\n## Build\n\n```\n$ yarn run build\n\n# or if you use npm\n\n$ npm build\n```\n\n## Usage\n\n```\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n    \u003chead\u003e\n        \u003cmeta charset=\"utf-8\"\u003e\n        \u003ctitle\u003eSudoku\u003c/title\u003e\n    \u003c/head\u003e\n    \u003cbody\u003e\n        \u003cscript src=\"./sudoku.min.js\"\u003e\u003c/script\u003e\n        \u003cscript\u003e\n            var board = [\n                [ null,    2, null, null, null, null, null, null, null ],\n                [ null, null, null,    6, null, null, null, null,    3 ],\n                [ null,    7,    4,    null, 8, null, null, null, null ],\n                [ null, null, null, null, null,    3, null, null,    2 ],\n                [ null,    8, null, null,    4, null, null,    1, null ],\n                [    6, null, null,    5, null, null, null, null, null ],\n                [ null, null, null, null,    1, null,    7,    8, null ],\n                [    5, null, null, null, null,    9, null, null, null ],\n                [ null, null, null, null, null, null, null,    4, null ],\n            ];\n\n            var sudoku = new Sudoku(board);\n\n            var result = sudoku.solve();\n\n            console.log(result);\n        \u003c/script\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuffalow%2Fsudokujs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuffalow%2Fsudokujs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuffalow%2Fsudokujs/lists"}