Solving crosswords
问题 I have a crossword puzzle and a list of words which can be used to solve it (words can be placed multiple times or not even once ). There is always a solution for the given crossword and word list. I searched for clues on how to solve this problem and found out that it is NP-Complete. My maximal crossword size is 250 by 250, the maximal length of the list (amount of words which can be used to solve it) is 200. My goal is to solve crosswords of this size by brute force/backtracking, which