The game is based on sudoku but uses icons representing elements instead of numbers. There should be no more than 1 of each element in every row, column and 2 x 2 mini grid. The puzzle is made using CSS grid and contains 16 boxes in total and was designed with a mobile-first approach.
The game consists of:
- A CSS grid of 16 sections where players can see displayed input elements.
- Pre selected elements in place in the grid to help players figure out the placement of the rest of the elements.
- 4 clickable element buttons to allow for inputs.
- 2 clickable helper buttons: Reset button to reset the board back to the start. Check button to check their answers against the solution.
- Add in a solve button, solves the puzzle for the player.
- A nicer win alert.
- A timer so players can see how long they’re taking.
- Add an erase button to clear a selected tile
- Harder puzzles/selection of difficulties.
- Would like to randomise icon placement on reset, this requires rules to be placed on icon placement otherwise the game might not have clues in the right place to solve.
- Would like to add media queries so that it scales down better on mobile, than just using percentages to keep it flexible
Element buttons cannot be toggled off at the moment, they will stay highlighted/selected until a new element button is clicked. Icon and tiles classLists need to be reset when reset button is clicked.