{"id":21244533,"url":"https://github.com/sunilbpandey/pysudoku","last_synced_at":"2025-06-29T11:36:40.145Z","repository":{"id":157052153,"uuid":"442897851","full_name":"sunilbpandey/pysudoku","owner":"sunilbpandey","description":"A Sudoku solver written in Python 3","archived":false,"fork":false,"pushed_at":"2022-01-04T07:22:24.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-15T04:27:00.480Z","etag":null,"topics":["python","python-3","python3","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sunilbpandey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-12-29T21:46:23.000Z","updated_at":"2022-01-04T07:22:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"cd4f30b9-b119-45a6-beb7-8ed97c738b0d","html_url":"https://github.com/sunilbpandey/pysudoku","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sunilbpandey/pysudoku","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunilbpandey%2Fpysudoku","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunilbpandey%2Fpysudoku/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunilbpandey%2Fpysudoku/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunilbpandey%2Fpysudoku/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunilbpandey","download_url":"https://codeload.github.com/sunilbpandey/pysudoku/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunilbpandey%2Fpysudoku/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262588323,"owners_count":23333177,"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":["python","python-3","python3","sudoku","sudoku-solver"],"created_at":"2024-11-21T01:27:49.412Z","updated_at":"2025-06-29T11:36:40.103Z","avatar_url":"https://github.com/sunilbpandey.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PySudoku\n## Usage\n    $ python3 src/sudoku/sudoku.py -f sample_boards/very_hard_3\n    Crunching numbers...\n\n    7 8 4 | 2 9 5 | 3 1 6\n    2 6 9 | 8 1 3 | 4 5 7\n    3 5 1 | 4 7 6 | 9 8 2\n    ---------------------\n    4 3 2 | 7 6 8 | 1 9 5\n    8 9 6 | 5 2 1 | 7 4 3\n    5 1 7 | 3 4 9 | 2 6 8\n    ---------------------\n    9 7 3 | 6 5 4 | 8 2 1\n    1 2 5 | 9 8 7 | 6 3 4\n    6 4 8 | 1 3 2 | 5 7 9\n\n    Values set: 158097\n    Time taken: 1.85s\n\n    $ python3 src/sudoku/sudoku.py \u003c sample_boards/very_hard_3\n    Enter the Sudoku grid to solve:\n\n    Crunching numbers...\n\n    7 8 4 | 2 9 5 | 3 1 6\n    2 6 9 | 8 1 3 | 4 5 7\n    3 5 1 | 4 7 6 | 9 8 2\n    ---------------------\n    4 3 2 | 7 6 8 | 1 9 5\n    8 9 6 | 5 2 1 | 7 4 3\n    5 1 7 | 3 4 9 | 2 6 8\n    ---------------------\n    9 7 3 | 6 5 4 | 8 2 1\n    1 2 5 | 9 8 7 | 6 3 4\n    6 4 8 | 1 3 2 | 5 7 9\n\n    Values set: 158097\n    Time taken: 1.80s\n\n    $ python3 src/sudoku/sudoku.py\n    Enter the Sudoku grid to solve:\n    080000010\n    060003000\n    301070900\n    402008090\n    000500700\n    010000000\n    903004020\n    000080004\n    600000000\n\n    Crunching numbers...\n\n    7 8 4 | 2 9 5 | 3 1 6\n    2 6 9 | 8 1 3 | 4 5 7\n    3 5 1 | 4 7 6 | 9 8 2\n    ---------------------\n    4 3 2 | 7 6 8 | 1 9 5\n    8 9 6 | 5 2 1 | 7 4 3\n    5 1 7 | 3 4 9 | 2 6 8\n    ---------------------\n    9 7 3 | 6 5 4 | 8 2 1\n    1 2 5 | 9 8 7 | 6 3 4\n    6 4 8 | 1 3 2 | 5 7 9\n\n    Values set: 158097\n    Time taken: 1.73s\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunilbpandey%2Fpysudoku","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunilbpandey%2Fpysudoku","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunilbpandey%2Fpysudoku/lists"}