Skip to content

Commit

Permalink
update puzzle (2024-10-17T08:00:46.268778)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksgwxfan committed Oct 17, 2024
1 parent 96ef2b1 commit 05aecd0
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions whilesudoku/puzzle.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
puzzle = {'TODAY': '2024-10-16',
'solved': [[9, 1, 2, 3, 7, 8, 4, 6, 5],
[5, 3, 6, 2, 9, 4, 1, 7, 8],
[8, 4, 7, 5, 6, 1, 3, 2, 9],
[2, 9, 3, 8, 5, 6, 7, 1, 4],
[4, 7, 5, 1, 3, 2, 8, 9, 6],
[6, 8, 1, 9, 4, 7, 5, 3, 2],
[7, 2, 8, 6, 1, 5, 9, 4, 3],
[3, 5, 4, 7, 2, 9, 6, 8, 1],
[1, 6, 9, 4, 8, 3, 2, 5, 7]],
'unsolved': [[9, ' ', ' ', ' ', 7, ' ', ' ', ' ', 5],
[' ', ' ', 6, ' ', ' ', 4, ' ', ' ', 8],
[' ', ' ', ' ', ' ', ' ', 1, 3, 2, ' '],
[' ', ' ', ' ', ' ', ' ', 6, ' ', 1, ' '],
[4, ' ', 5, ' ', 3, ' ', 8, ' ', 6],
[' ', 8, ' ', 9, ' ', ' ', ' ', ' ', ' '],
[' ', 2, 8, 6, ' ', ' ', ' ', ' ', ' '],
[3, ' ', ' ', 7, ' ', ' ', 6, ' ', ' '],
[1, ' ', ' ', ' ', 8, ' ', ' ', ' ', 7]]}
puzzle = {'TODAY': '2024-10-17',
'solved': [[6, 9, 1, 4, 5, 3, 7, 8, 2],
[2, 7, 5, 8, 6, 1, 4, 3, 9],
[4, 3, 8, 9, 7, 2, 6, 1, 5],
[5, 6, 3, 7, 2, 9, 1, 4, 8],
[8, 2, 7, 5, 1, 4, 9, 6, 3],
[1, 4, 9, 3, 8, 6, 5, 2, 7],
[7, 5, 6, 2, 4, 8, 3, 9, 1],
[3, 1, 2, 6, 9, 5, 8, 7, 4],
[9, 8, 4, 1, 3, 7, 2, 5, 6]],
'unsolved': [[6, 9, 1, ' ', 5, ' ', ' ', 8, ' '],
[' ', ' ', ' ', 8, ' ', ' ', 4, ' ', ' '],
[' ', 3, ' ', ' ', 7, ' ', ' ', ' ', 5],
[5, ' ', ' ', ' ', ' ', 9, ' ', ' ', ' '],
[' ', 2, ' ', ' ', 1, ' ', ' ', 6, ' '],
[' ', ' ', ' ', 3, ' ', ' ', ' ', ' ', 7],
[7, ' ', ' ', ' ', 4, ' ', ' ', 9, ' '],
[' ', ' ', 2, ' ', ' ', 5, ' ', ' ', ' '],
[' ', 8, ' ', ' ', 3, ' ', 2, 5, 6]]}

0 comments on commit 05aecd0

Please sign in to comment.