Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@heyheni Yup. Given an Image it reads the content and tries to automatically solve it using backtracking algorithm _(Written in Golang)_ the actual parsing of the image is done with the help of OpenCV using c++.
-
Long time ago, while I was at uni, java exam was to create sudoku solver. Haven't played sudoku ever since.
Gj on image parsing and sudoku solver, I hope you don't stop playing. -
@Fjord actual parsing is real fast because it is implemented in c++. But the parsing can take some time depending on the complexity of the sudoku. Mainly because of backtracking. May be there are other approaches that are faster but not sure yet.
-
I'd try to order cells by the amount of possibilities and start backtracking afterwards (also reorder after every insert)
Super excited to get my first ML project on, been working on this on - off for a couple of years. Now that I had sometime to spare could get it completed :) And along the way learned a lot of things as well :)
Let me know what you guys think.
https://github.com/Prabandham/...
https://github.com/Prabandham/...
A lot of thanks to this Repo that helped in parsing the image to string.
https://github.com/BenNG/...
Of course PR's and suggestions really welcome and appreciated.
rant