Remix.run Logo
HaxleRose 14 hours ago

Fair criticism. I appreciate the feedback! I thought I made the backspace key work on Sudoku. I'll look into that. I know "E" works for erase. Just checked it and if the incorrect answer is selected, you can press "E" or "delete"/"backspace" and that should clear the incorrect answer. As for the fail counter, it's so that the leaderboards are fair. If someone can just faceroll the keyboard to solve the puzzle quickly, it's not really fair for the leaderboards. But I get it. Sudoku isn't typically really a competitive puzzle and when doing them on paper, you often will erase wrong answers and keep going.

cwmoore 12 hours ago | parent [-]

I am used to 0 and backspace, not too difficult to allow 0 key to clear a cell.

Curious if you could let me know what code or images provide the backgrounds on your Kakuro, is it a CSS diagonal line, or a tile? What comes up if you run a quick:

    find . -name diag.png -type f
Reminds me of mine!
HaxleRose 10 hours ago | parent [-]

Good to know. Yeah, it's pretty easy to add 0, so I'll do that soon. For the kakuro backgrounds, it's pure CSS, no images. The diagonal split in the clue cells is a single linear-gradient hairline, not a tile or PNG:

.kakuro-clue { background-image: linear-gradient(to top right, transparent calc(50% - 0.5px), rgb(148 163 184) calc(50% - 0.5px), rgb(148 163 184) calc(50% + 0.5px), transparent calc(50% + 0.5px)); }

The site uses Tailwind CSS for the styling generally.