1
 2 // Sudoku project page
 3 // The algo implemented here is pretty dumb, but I like it
 4 // -------------------------------------------------------------------------------------------------------------------------------------------
 5
 6 class Sudoku: public Project {
 7
 8    name: Sudoku
 9
10    desc: Fully functional Sudoku game in JavaScript, featuring a user interface for playing, viewing the rules,
11          and implementing a custom algorithm to solve Sudoku puzzles
12
13    tools: Html/Css/JavaScript, algorithms
14
15    github_link: Click here
16
17 }
18
19
20
21
22