{"id":15705293,"url":"https://github.com/brahmlower/sudoku-solver","last_synced_at":"2025-07-24T10:10:18.462Z","repository":{"id":86081688,"uuid":"509859924","full_name":"brahmlower/sudoku-solver","owner":"brahmlower","description":null,"archived":false,"fork":false,"pushed_at":"2022-07-09T10:03:23.000Z","size":12,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-05T17:12:15.839Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/brahmlower.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":"2022-07-02T20:55:26.000Z","updated_at":"2022-07-03T21:57:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"6ab6d96d-867d-4417-b120-42878b3c18ac","html_url":"https://github.com/brahmlower/sudoku-solver","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"00a0e3a4c9dc281b03d74bcd8a0a01cbd7e56623"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brahmlower%2Fsudoku-solver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brahmlower%2Fsudoku-solver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brahmlower%2Fsudoku-solver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brahmlower%2Fsudoku-solver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brahmlower","download_url":"https://codeload.github.com/brahmlower/sudoku-solver/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246336554,"owners_count":20761071,"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-10-03T20:15:21.066Z","updated_at":"2025-03-30T15:25:55.174Z","avatar_url":"https://github.com/brahmlower.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Sudoku Solver\n\nThis is a poorly designed and unoptimized sudoku solver. It has no considerations for abstractions, reuse or efficiency. It was just a fun friday evening project 🤷‍♂️\n\nTo do:\n- Implement wave form collapse to follow cell updates\n- Easier loading/saving of sudoku boards\n  - Loading new boards from an api would be great\n- Possibly guessing when a cell can't be determined\n  - Requires a historical log of changes so they can be reverted if a guess is incorrect\n\nRunning outputs the following:\n```\nStarting 🤖\n┏━━━━━━━┳━━━━━━━┳━━━━━━━┓\n┃ ⁹ 4 ⁹ ┃ 6 ⁹ 2 ┃ ⁹ 3 1 ┃\n┃ ⁹ ⁹ ⁹ ┃ ⁹ ⁹ 1 ┃ 6 ⁹ 9 ┃\n┃ 6 ⁹ ⁹ ┃ 5 4 ⁹ ┃ 8 2 7 ┃\n┣━━━━━━━╋━━━━━━━╋━━━━━━━┫\n┃ ⁹ ⁹ 2 ┃ 7 6 ⁹ ┃ ⁹ 8 ⁹ ┃\n┃ 5 ⁹ 6 ┃ ⁹ ⁹ ⁹ ┃ ⁹ 7 4 ┃\n┃ ⁹ 8 7 ┃ ⁹ ⁹ 5 ┃ ⁹ 6 2 ┃\n┣━━━━━━━╋━━━━━━━╋━━━━━━━┫\n┃ 1 6 ⁹ ┃ ⁹ 8 ⁹ ┃ ⁹ 5 ⁹ ┃\n┃ 8 2 ⁹ ┃ ⁹ ⁹ 7 ┃ ⁹ 9 ⁹ ┃\n┃ 7 ⁹ ⁹ ┃ ⁹ ⁹ 6 ┃ 2 ⁹ ⁹ ┃\n┗━━━━━━━┻━━━━━━━┻━━━━━━━┛\nSolved! 💪\n┏━━━━━━━┳━━━━━━━┳━━━━━━━┓\n┃ 9 4 8 ┃ 6 7 2 ┃ 5 3 1 ┃\n┃ 2 7 5 ┃ 8 3 1 ┃ 6 4 9 ┃\n┃ 6 3 1 ┃ 5 4 9 ┃ 8 2 7 ┃\n┣━━━━━━━╋━━━━━━━╋━━━━━━━┫\n┃ 4 9 2 ┃ 7 6 3 ┃ 1 8 5 ┃\n┃ 5 1 6 ┃ 9 2 8 ┃ 3 7 4 ┃\n┃ 3 8 7 ┃ 4 1 5 ┃ 9 6 2 ┃\n┣━━━━━━━╋━━━━━━━╋━━━━━━━┫\n┃ 1 6 9 ┃ 2 8 4 ┃ 7 5 3 ┃\n┃ 8 2 3 ┃ 1 5 7 ┃ 4 9 6 ┃\n┃ 7 5 4 ┃ 3 9 6 ┃ 2 1 8 ┃\n┗━━━━━━━┻━━━━━━━┻━━━━━━━┛\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrahmlower%2Fsudoku-solver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrahmlower%2Fsudoku-solver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrahmlower%2Fsudoku-solver/lists"}