Skip to content

jack-carling/sudoku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku

Sudoku (数独) is a logic-based number-placement puzzle. In classic sudoku, the objective is to fill a 9×9 grid with digits so that each column, each row, and each of the nine 3×3 sub-grids that compose the grid (also called "boxes") contain all of the digits from 1 to 9. The puzzle setter provides a partially completed grid, which for a well-posed puzzle has a single solution.

Demo

Play on Netlify

Setup

# Install dependencies
npm install
# Run development server
npm start

Screenshot

screenshot

Difficulties

Sudoku is often categorized based on its difficulty to solve the puzzle. Easiness to solve depend on number of clues provided and number of alternatives available for the next easiest cell.

Hard

19-26 clues

Medium

27-36 clues

Easy

36-47 clues