All Projects → mstou → sudoku-solver

mstou / sudoku-solver

Licence: MIT license
A simple sudoku solver

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to sudoku-solver

sudoku
A very fast Java Sudoku library implementation along with a command line client
Stars: ✭ 15 (-6.25%)
Mutual labels:  sudoku-solver, sudoku, sudoku-solution-finder
python-sudoku-generator-solver
Python based sudoku generator that can create unique Sudoku board based on 4 difficulty levels. This code also includes a brute force sudoku solver that is capable of solving even the most difficult sudoku puzzles!
Stars: ✭ 58 (+262.5%)
Mutual labels:  sudoku-solver, sudoku
Resolvedor-de-Sudoku
Resolver Sudoku de genina.com
Stars: ✭ 17 (+6.25%)
Mutual labels:  sudoku-solver, sudoku
neuro-symbolic-sudoku-solver
⚙️ Solving sudoku using Deep Reinforcement learning in combination with powerful symbolic representations.
Stars: ✭ 60 (+275%)
Mutual labels:  sudoku-solver, sudoku
Sudoku-Solver
🎯 This Python-based Sudoku Solver utilizes the PyGame Library and Backtracking Algorithm to visualize and solve Sudoku puzzles efficiently. With its intuitive interface, users can input and interact with the Sudoku board, allowing for a seamless solving experience.
Stars: ✭ 51 (+218.75%)
Mutual labels:  sudoku-solver, sudoku
sudoLite
一款轻巧、趣萌、界面精美,具备统计、排行(即将推出),开源、免费、无广告的数独小程序
Stars: ✭ 55 (+243.75%)
Mutual labels:  sudoku
Sudoku
A sudoku solver using brute forces and logical techniques.
Stars: ✭ 49 (+206.25%)
Mutual labels:  sudoku
Hodoku
Hodoku is a solver/generator/trainer/analyzer for standard sudoku.
Stars: ✭ 49 (+206.25%)
Mutual labels:  sudoku
Udacity
This repo includes all the projects I have finished in the Udacity Nanodegree programs
Stars: ✭ 57 (+256.25%)
Mutual labels:  sudoku-solver
Sudoku
The classic game in its brand new, modern shape. Badges, points & leaderboards included.
Stars: ✭ 13 (-18.75%)
Mutual labels:  sudoku
sudokufx
AR Sudoku grabber and solver using JavaCV, JavaFX and Scala
Stars: ✭ 64 (+300%)
Mutual labels:  sudoku
grilops
a GRId LOgic Puzzle Solver library
Stars: ✭ 29 (+81.25%)
Mutual labels:  sudoku-solver
go-sudoku
A web-based sudoku solver powered by OpenCV and Go
Stars: ✭ 17 (+6.25%)
Mutual labels:  sudoku-solver
sudoku
Multiplayer concurrent sudoku. The winner is the player who fills the last cell correctly.
Stars: ✭ 15 (-6.25%)
Mutual labels:  sudoku
ConstraintSolver.jl
ConstraintSolver in Julia: Blog posts ->
Stars: ✭ 107 (+568.75%)
Mutual labels:  sudoku
sudoku
A Sudoku web app in React.
Stars: ✭ 50 (+212.5%)
Mutual labels:  sudoku
hsudoku
A native gtk sudoku game written in haskell
Stars: ✭ 31 (+93.75%)
Mutual labels:  sudoku
imgui
Dear ImGui Addons Branch = plain unmodified dear imgui plus some extra addon.
Stars: ✭ 348 (+2075%)
Mutual labels:  sudoku
PlaySudoku
PlaySudoku, a web sudoku game.
Stars: ✭ 25 (+56.25%)
Mutual labels:  sudoku

Sudoku Solver

TL;DR: I was solving some sudoku boards on vacations and I was too bored to spend hours trying to solve the difficult ones..and as I cant stay away from coding too many days, I thought I should hand them over to my pc :P. Enjoy

Contents

/src/lib contains a purely functional implementation of a sudoku solver written in JS. The solver checks if the current state of the board implies the position of some numbers, and iterates until there are no such implications. Then it proceeds by guessing an empty cell's number and tries to recursively solve the problem using backtracking.

/src/components contains our app's dummy React components

/src/reducers & /src/actions contains the reducers and action generators used by Redux

/src/containers contains our app's containers generated by React-Redux's connect function

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].