This program solves Squaredle puzzles.
To use the program, provide the puzzle input in the following format:
- Enter each row of the puzzle as a sequence of characters side by side.
- Separate each row with a comma (
,
).
For a 4x4 Squaredle grid where the rows are:
abcd
bcda
cdab
dabc
You would input:
abcd,bcda,cdab,dabc
The program will process this input and generate all possible word solutions based on the grid layout and rules of the Squaredle puzzle.