{"id":20614474,"url":"https://github.com/adityasworks/sudoku-solver","last_synced_at":"2025-08-03T22:38:44.592Z","repository":{"id":244629245,"uuid":"815798087","full_name":"AdityasWorks/Sudoku-Solver","owner":"AdityasWorks","description":"Sudoku Solver using Backtracking method in pyhton","archived":false,"fork":false,"pushed_at":"2024-06-16T07:38:11.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-17T04:12:57.249Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/AdityasWorks.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":"2024-06-16T07:28:00.000Z","updated_at":"2024-06-16T07:38:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"77bca4e5-350c-44f0-9c57-ad66d0ebe086","html_url":"https://github.com/AdityasWorks/Sudoku-Solver","commit_stats":null,"previous_names":["adityasworks/sudoku-solver"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdityasWorks%2FSudoku-Solver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdityasWorks%2FSudoku-Solver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdityasWorks%2FSudoku-Solver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AdityasWorks%2FSudoku-Solver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AdityasWorks","download_url":"https://codeload.github.com/AdityasWorks/Sudoku-Solver/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242269044,"owners_count":20100071,"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":[],"created_at":"2024-11-16T11:12:51.586Z","updated_at":"2025-03-06T18:43:26.646Z","avatar_url":"https://github.com/AdityasWorks.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sudoku Solver\n\nThis Python script solves a Sudoku puzzle using a backtracking algorithm.\n\n## Example Sudoku Board\n\n```python\nboard = [\n    [5, 3, 0, 0, 7, 0, 0, 0, 0],\n    [6, 0, 0, 1, 9, 5, 0, 0, 0],\n    [0, 9, 8, 0, 0, 0, 0, 6, 0],\n    [8, 0, 0, 0, 6, 0, 0, 0, 3],\n    [4, 0, 0, 8, 0, 3, 0, 0, 1],\n    [7, 0, 0, 0, 2, 0, 0, 0, 6],\n    [0, 6, 0, 0, 0, 0, 2, 8, 0],\n    [0, 0, 0, 4, 1, 9, 0, 0, 5],\n    [0, 0, 0, 0, 8, 0, 0, 7, 9]\n]\n```\n\n## Functions\n- Print_Board(bo): Prints the Sudoku board in a readable format.\n- find_Empty(bo): Finds an empty cell (represented by 0) in the board.\n- valid(bo, num, pos): Checks if placing a number num at position pos is valid according to Sudoku rules.\n- solve(bo): Solves the Sudoku puzzle using backtracking.\n\n## Usage\n1. Clone Repository\n```bash\ngit clone https://github.com/yourusername/sudoku-solver.git\n```\n2. Modify the \"Board\" variable\n3. Run the Solver:\n```bash\npython Solver.py\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadityasworks%2Fsudoku-solver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadityasworks%2Fsudoku-solver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadityasworks%2Fsudoku-solver/lists"}