Generating word search puzzles

https://github.com/Magoninho/word-search-puzzle-generator.git

NOTE: two small changes need to be made in main.py to make this code work.

Comment this line out:

# words = ["wear", "variable", "print", "minimum", "graduate", "room", "bulk", "advise", "completed", "memory"]

And change this line...

lines = file1.readlines()

into:

words = [word.strip() for word in file1.readlines()]

Now it should work!