You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+17-5Lines changed: 17 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -14,14 +14,26 @@ Note: This web page does not save any entered clues or values. Refreshing or nav
14
14
15
15
###Instructions:
16
16
1. To begin, __enter some clues__. Find a sudoku puzzle and input its clues using the number keys to insert values. The arrow keys, TAB, and ENTER can be used for navigation, while DELETE and BACKSPACE remove values. Alternatively enter clues using the Paste puzzle button.
17
-
2.__Submit the clues__ by clicking the Submit clues button. This sets the clues as read-only and enables several features.
17
+
2.__Submit the clues__ by clicking the Submit clues button. Sets the clues as read-only and enables several features.
18
18
3.__Solve the puzzle__ using pencil marks, cell highlighting, guesses, hints, and if all else fails, show solution.
19
19
20
20
###Button descriptions:
21
-
*__Clear cells__: Deletes all clues and values, resets pencil marks, and removes all highlighting. This resets the page to its initial state.
22
-
*__Submit clues__: Marks the entered values as read-only clues and submits them to the puzzle solver. Also enables hints, show solution, and guess removal. Once the clues have been submitted, they cannot be changed.
23
-
*__Paste puzzle__: Allows values to be inputted from the clipboard. This overwrites existing values. Zeros can be used as placeholders for empty cells. Characters other than 0-9 are ignored. There must be exactly 81 numbers for this to work properly.
21
+
*__Clear cells__: Deletes all clues and values, resets pencil marks, and removes all highlighting. Use carefully, this resets the page to its initial state.
22
+
*__Submit clues__: Sets the entered values as read-only clues and submits them to the puzzle solver. Once the clues have been submitted, they cannot be changed. This generates a solution for the clues and as a result, enables hints, show solution, and guess removal.
23
+
*__Paste puzzle__: Allows values to be inputted from the clipboard. Use carefully, this overwrites existing values. Zeros can be used as placeholders for empty cells. Characters other than 0-9 are ignored. There must be exactly 81 numbers for this to work properly.
24
+
24
25
*__1-9__: Highlights all cells that do not have a pencil mark of 1-9 a pale green color. If the pencil marks are updated, this can be used to easily determine which cells do not have a value of 1-9. Does not update automatically.
25
26
*__Clear__: Removes all cell highlighting.
26
27
27
-
*__Reset__: THIS CAN BE USED IF YOU DO NOT WANT TO HAVE THE HELP OF PENCIL MARKS.
28
+
*__Enter values__: When this option is selected, typing a number in a cell changes its value.
29
+
*__Enter pencil marks__: When this option is selected, typing a number in a cell toggles that pencil mark.
30
+
*__Automatically remove pencil marks__: When this option is enabled, entering a value in a cell removes that pencil mark from all of the cell's neighbors (cells in the same row, box, or column).
31
+
*__Update__: Changes all pencil marks so that they show the possible values that each cell could have. Use carefully, this overwrites existing pencil marks.
32
+
*__Reset__: Adds all pencil marks to empty cells. Allows solving the puzzle without the aid of pencil marks. Use carefully, this overwrites existing pencil marks.
33
+
*__Show duplicates__: When this option is enabled, neighboring cells with the same value are flagged red.
34
+
35
+
*__Mark blank cells `color`__: Marks all blank cells with a certain color. Use this to make guesses so that if the guess is incorrect, all values entered afterwards can be removed easily.
36
+
*__Delete cells marked `color`__: Deletes all cells that have been marked a certain color. Does not affect cells marked a different color or pencil marks.
37
+
38
+
*__Show solution__: Shows the solution for the clues, or a solution if there are more than one.
39
+
*__Hint__: Gives a hint for cell that was last selected, up to three hints. Hints are based on the solution.
Copy file name to clipboardExpand all lines: index.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -81,17 +81,17 @@
81
81
<divclass="small_header">Guessing tools:</div>
82
82
<ul>
83
83
<li>
84
-
Set blank cells:
85
-
<selecttitle="Set the blank cells a unique color so they can be deleted easily. This is useful for making guesses." onchange="this.style.color = this.value.toLowerCase(); setBlankCells(this.value.toLowerCase());">
84
+
Mark blank cells:
85
+
<selecttitle="Mark all blank cells a unique color so they can be deleted easily. This is useful for making guesses." onchange="this.style.color = this.value.toLowerCase(); setBlankCells(this.value.toLowerCase());">
0 commit comments