Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 610 Bytes

File metadata and controls

24 lines (19 loc) · 610 Bytes

Squaredle Puzzle Solver

This program solves Squaredle puzzles.

Instructions for Input

To use the program, provide the puzzle input in the following format:

  1. Enter each row of the puzzle as a sequence of characters side by side.
  2. Separate each row with a comma (,).

Example Input

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.