{"id":16589231,"url":"https://github.com/coldfix/sudoku-cli","last_synced_at":"2025-10-15T14:15:43.161Z","repository":{"id":146978210,"uuid":"75494508","full_name":"coldfix/sudoku-cli","owner":"coldfix","description":"Awful command line interface for a sudoku generator","archived":false,"fork":false,"pushed_at":"2021-03-08T16:15:06.000Z","size":57,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-28T00:37:01.854Z","etag":null,"topics":["cli","sudoku-puzzle"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coldfix.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"COPYING.GPLv3.txt","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":"2016-12-03T19:10:00.000Z","updated_at":"2020-01-06T21:43:16.000Z","dependencies_parsed_at":"2023-05-23T08:45:23.311Z","dependency_job_id":null,"html_url":"https://github.com/coldfix/sudoku-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coldfix/sudoku-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldfix%2Fsudoku-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldfix%2Fsudoku-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldfix%2Fsudoku-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldfix%2Fsudoku-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coldfix","download_url":"https://codeload.github.com/coldfix/sudoku-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldfix%2Fsudoku-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279085206,"owners_count":26100015,"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","status":"online","status_checked_at":"2025-10-15T02:00:07.814Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","sudoku-puzzle"],"created_at":"2024-10-11T23:08:16.080Z","updated_at":"2025-10-15T14:15:43.124Z","avatar_url":"https://github.com/coldfix.png","language":"C++","readme":"sudoku-cli\n----------\n\nSimple command line interface for a sudoku generator.\n\nBe warned, I coded this as a teenager in between 2006-2011 and only imported\ninto git later. The code is in horrible C++0x (as it was called back then)\nwith only the features that were supported by the latest version of g++ 4.5 ;)\n\n\nBuild\n~~~~~\n\nYou need\n\n- g++\n- libboost-dev\n- some luck\n\nOn linux, type::\n\n    make\n\n\nUsage\n~~~~~\n\nGenerate \"normal\" sudoku::\n\n    $ ./sudoku\n    9 6 0  0 2 0  7 5 0\n    0 0 2  0 3 0  0 0 4\n    0 0 0  9 0 0  0 0 0\n\n    0 3 0  4 0 0  0 0 0\n    5 2 0  3 0 0  4 0 0\n    0 1 7  6 8 2  0 3 0\n\n    0 0 0  0 7 0  0 0 0\n    0 0 0  1 0 9  6 0 0\n    0 0 4  0 0 0  2 0 8\n\nWith solutions blended in::\n\n    $ ./sudoku --solution\n    ~9 ~6  3   8  2 ~4  ~7 ~5  1\n    ~8 ~5 ~2   7 ~3 ~1  ~9  6 ~4\n    ~7  4  1  ~9 ~5 ~6  ~3 ~8 ~2\n\n    ~6 ~3 ~9   4 ~1  5   8  2 ~7\n    ~5 ~2  8  ~3  9 ~7   4  1 ~6\n    ~4 ~1  7  ~6  8 ~2  ~5  3 ~9\n\n    ~3  9  6  ~2  7 ~8  ~1 ~4  5\n    ~2  8  5   1 ~4 ~9  ~6 ~7  3\n    ~1 ~7  4  ~5 ~6  3  ~2 ~9 ~8\n\nCustom size::\n\n    $ ./sudoku 3x4\n     0  0  6  3   0  4  0  0   0  5  2  0\n     0  8  0  2  10  0  0  9   0  0  0  4\n    10  0  0  1  12  6  0  0   0  0  0  0\n\n     9  3  0  6   5  0  8  0   0  7  0  0\n     0  0 11  5   0  0  4  0   0  1  9 12\n     0  1  0  0   0  0  0  0   5  3  0  2\n\n     0  0  0  0   0  0 10  0   4  0  0  0\n     0 11  0  0   4  1  0  0   3  0 10  7\n     0  0  1  7   8  5  3  0   0  2  0  0\n\n     3  0  9  0   0  0  2  0   8 10  0 11\n     0  0  0  0   0  0  0  0   0  0  0  6\n     1  0  7  0   6  8  0  0   2  9  0  0\n\n**NOTE:** you shouldn't goo higher than 5v5 – the algorithm is really bad and\nwill take forever.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoldfix%2Fsudoku-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoldfix%2Fsudoku-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoldfix%2Fsudoku-cli/lists"}