{"id":16582561,"url":"https://github.com/sekthor/sudoku-solver","last_synced_at":"2025-07-29T03:43:45.103Z","repository":{"id":147168641,"uuid":"341655293","full_name":"sekthor/sudoku-solver","owner":"sekthor","description":"A very simple method to solve sudokus automatically","archived":false,"fork":false,"pushed_at":"2021-02-23T18:46:50.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-16T12:52:21.209Z","etag":null,"topics":["sudoku","sudoku-solver"],"latest_commit_sha":null,"homepage":"","language":"Python","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/sekthor.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-23T18:46:05.000Z","updated_at":"2021-04-08T19:34:48.000Z","dependencies_parsed_at":"2023-07-02T18:15:57.468Z","dependency_job_id":null,"html_url":"https://github.com/sekthor/sudoku-solver","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sekthor%2Fsudoku-solver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sekthor%2Fsudoku-solver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sekthor%2Fsudoku-solver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sekthor%2Fsudoku-solver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sekthor","download_url":"https://codeload.github.com/sekthor/sudoku-solver/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242138787,"owners_count":20078007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["sudoku","sudoku-solver"],"created_at":"2024-10-11T22:33:18.083Z","updated_at":"2025-03-06T02:41:47.373Z","avatar_url":"https://github.com/sekthor.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sudoku Solver\n\nSimple Sudoku Solver written in python.\nA fun little project I have wanted to do a while now.\n\n## Usage\n\nImport the module.\n\n```python\nfrom sudoku import *\n```\n\nA sudoku is constructed from a 9x9 list containing numbers from `1-9` or `0` for empty fields.\n\n```python\ns1 = [ \n        [6,0,9,4,0,0,0,3,0],\n        [2,0,0,6,0,0,0,1,0],\n        [0,4,0,0,0,2,0,7,0],\n        [0,0,4,5,0,0,7,0,0],\n        [7,0,0,8,0,9,0,0,6],\n        [0,0,5,0,0,3,2,0,0],\n        [0,1,0,2,0,0,0,6,0],\n        [0,7,0,0,0,6,0,0,8],\n        [0,9,0,0,0,4,5,0,3]\n\t]\n\nsudoku = Sudoku(s1)\n```\n\nInstanciate SodukuSolver with Sudoku and call the solve method.\n\n```python\nsolver = SudokuSolver(sudoku)\nsolver.solve()\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsekthor%2Fsudoku-solver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsekthor%2Fsudoku-solver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsekthor%2Fsudoku-solver/lists"}