Inspiration
I had to create a Sodoku solver for class once, and thought that it would be cool to have solvers for other puzzles as well.
What it does
Given all the letters of the word search in order from left to right, top to bottom, it'll give you the locations of all the words that you are trying to find.
How I built it
The program is written in Python.
Challenges I ran into
It was difficult to use the find() function for diagonal words, so instead I used a different method of nested loops to search for diagonals.
Log in or sign up for Devpost to join the conversation.