https://github.com/minhkhang1795/androidsudokusolver
I love solving puzzles and Sudoku is one of my favorites. Creating an application to solve Sudoku is challenging and of course puzzling as well! :-)
https://github.com/minhkhang1795/androidsudokusolver
android java sudoku-solver
Last synced: about 2 months ago
JSON representation
I love solving puzzles and Sudoku is one of my favorites. Creating an application to solve Sudoku is challenging and of course puzzling as well! :-)
- Host: GitHub
- URL: https://github.com/minhkhang1795/androidsudokusolver
- Owner: minhkhang1795
- License: mit
- Created: 2017-09-27T19:52:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-12T02:24:44.000Z (almost 7 years ago)
- Last Synced: 2025-01-27T23:15:58.761Z (3 months ago)
- Topics: android, java, sudoku-solver
- Language: Java
- Homepage:
- Size: 648 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Android Sudoku Solver
*Under Development*
One of my friends at [Olin](http://www.olin.edu) occasionally posted a Sudoku puzzle on his dorm room whiteboard, attracting and challenging people walking by. One day, I and two other friends tried to solve one of his puzzles. Three of us eventually spent nearly an hour solving the problem!
I then asked myself if I knew the methods to solve a Sudoku puzzle, could I create a program that helps solve the puzzle for me? I mentioned the Sudoku solver program to my professors in the **WeCreate co-curricular** and they shared with us the [A Pencil-and-Paper Algorithm for Solving Sudoku Puzzles](http://www.ams.org/notices/200904/tx090400460p.pdf).
After a couple of weeks, I finally developed an Android application below. It's still not perfect and the algorithm isn't the most efficient one. But at least, I now have an app that helps me solve my friend’s Sudoku puzzles!
In the future, I'd love to integrate image recognition into the app so that instead of manually inputting the numbers, users can take the picture of a Sudoku grid and the app can recognize and solve the puzzle by itself.
[Algorithm in Python](https://github.com/olinrobotics/irl/tree/sudoku-cv-khang/dino_arms/projects/sudoku_solver/Khang%20Folder/sudoku-algorithm)

## License
Copyright 2017 Minh-Khang Vu
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.