{"id":23439831,"url":"https://github.com/ksokolovic/jsudoku","last_synced_at":"2025-04-09T20:15:56.757Z","repository":{"id":33352979,"uuid":"36997784","full_name":"ksokolovic/JSudoku","owner":"ksokolovic","description":"Java implementation of the core Sudoku game. ","archived":false,"fork":false,"pushed_at":"2015-06-06T22:59:50.000Z","size":224,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T20:15:54.006Z","etag":null,"topics":["algorithm","java","jsudoku","sudoku-puzzle"],"latest_commit_sha":null,"homepage":null,"language":"Java","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/ksokolovic.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}},"created_at":"2015-06-06T22:59:32.000Z","updated_at":"2025-01-10T05:53:19.000Z","dependencies_parsed_at":"2022-08-07T20:31:20.248Z","dependency_job_id":null,"html_url":"https://github.com/ksokolovic/JSudoku","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/ksokolovic%2FJSudoku","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksokolovic%2FJSudoku/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksokolovic%2FJSudoku/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ksokolovic%2FJSudoku/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ksokolovic","download_url":"https://codeload.github.com/ksokolovic/JSudoku/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248103869,"owners_count":21048245,"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":["algorithm","java","jsudoku","sudoku-puzzle"],"created_at":"2024-12-23T15:36:38.419Z","updated_at":"2025-04-09T20:15:56.722Z","avatar_url":"https://github.com/ksokolovic.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSudoku\n* * *\n\n**JSudoku** is a Java-based Sudoku library. It provides a framework with various Sudoku related algorithms. \n\nThe library provides the following classes:\n\n* Model: A class that models a Sudoku puzzle grid. \n* Generator: A class that generates the new Sudoku puzzle based on the given level of difficulty.\n* Solver: A class that implements various algorithms for solving the Sudoku puzzle. The following algorithms are provided:\n    * Row Elimination Technique\n    * Column Elimination Technique\n    * Minigrid Elimination Technique\n    * Row Lone Rangers Technique\n    * Column Lone Rangers Technique\n    * Minigrid Lone Rangers Technique\n    * Row Twins Technique\n    * Column Twins Technique\n    * Minigrid Twins Technique\n    * Row Triplets Technique\n    * Column Triplets Technique\n    * Minigrid Triplets Technique\n    * Brute Force Elimination Technique\n\n## Documentation\n\nThe documentation can be reached at the [wiki page](https://bitbucket.org/sokolovic/jsudoku/wiki).\n\n# Usage\n* * *\n\nTo be able to use the library, you can clone the source code from the repository:\n\n```sh\n$ git clone https://sokolovic@bitbucket.org/sokolovic/jsudoku.git\n```\n\nYou can build a library JAR by running the *Ant* as follows (assuming you're on the same directory level where the ```build.xml``` file resides):\n\n```sh\n$ ant\n```\n\nAfter getting the information on successful build, the target JAR is in the ```/build/jar/``` subdirectory of the root project directory. \n\n# Developers\n* * *\n\n| Name            | E-mail address                       | Skype ID            |\n|:----------------|:------------------------------------:|:-------------------:|\n| Kemal Sokolović | kemal DOT sokolovic AT gmail DOT com | kemal DOT sokolovic |\n\n\n## Maintainers\n\n| Name            | E-mail address                       | Skype ID            |\n|:----------------|:------------------------------------:|:-------------------:|\n| Kemal Sokolović | kemal DOT sokolovic AT gmail DOT com | kemal DOT sokolovic |\n\n\n## Contributors\n\nIn case you discover any bugs or want to contribute to the project in any way, feel free to raise an issue [here](https://bitbucket.org/sokolovic/jsudoku/issues). You can also join publicly available [HipChat channel](https://www.hipchat.com/gVvvyStse) for a discussion. \n\n| Name            | E-mail address                       | Skype ID            |\n|:----------------|:------------------------------------:|:-------------------:|\n|                 |                                      |                     |\n\n# Licence\n* * *\n\n\u003e *Copyright (c) 2014-2015 Kemal Sokolović \u003ckemal DOT sokolovic AT gmail DOT com\u003e*\n\u003e\n\u003e Permission is hereby granted, free of charge, to any person obtaining a copy of\n\u003e this software and associated documentation files (the \"Software\"), to deal in the\n\u003e Software without restriction, including without limitation the rights to use,\n\u003e copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the\n\u003e Software, and to permit persons to whom the Software is furnished to do so,\n\u003e subject to the following conditions:\n\u003e\n\u003e The above copyright notice and this permission notice shall be included in all\n\u003e copies or substantial portions of the Software.\n\u003e \n\u003e THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n\u003e IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n\u003e FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\n\u003e IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n\u003e DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\n\u003e ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\n\u003e DEALINGS IN THE SOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fksokolovic%2Fjsudoku","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fksokolovic%2Fjsudoku","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fksokolovic%2Fjsudoku/lists"}