1. Introduction

In this tutorial, we’re going to explore the topic of generating crossword puzzles. Which is effectively placing a set of words into a grid, such that they overlap.

In particular, we’ll be focusing on how to determine where to place words to generate the best crosswords.

2. Iterative Placement

Our starting algorithm is to place words iteratively into a grid until we run out of space. This will work by shuffling our word list and then working down it and placing each one onto the grid until we have reached a set number of words to place.

Note that this algorithm assumes an infinite grid where we can place words. In reality, this obviously can’t be the case, and any implementation would need to work within our constraints.

2.1. Algorithm

Rendered by QuickLaTeX.com

A lot is going on here, and not everything is expressed in the above algorithm. In particular, the mechanisms for placing a word and checking if a word is legit are omitted for brevity.

Our first word is just placed in the middle of the grid. All other words then expand from there.

Subsequent words will find a location by iterating over each letter in the word and then iterating through the grid to find a position that has this letter in it. We check if the word can legally be placed here whenever we find one. We keep going until the first of these checks passes, in which case this is where we stop and place this word.

Sometimes, there are no suitable slots. For example, there might be no letters in common, or there might be no places that legally allow the word to be placed. Then, we keep going until we have either placed enough words or have run out of words.

2.2. Worked Example

Let’s work through this algorithm and see it in action to show how it can create our first crossword.

Our first randomly selected word is “SHOP”. This gets placed directly on the grid, giving us:

Screenshot-2022-02-21-at-07.39.24

After this, we start with the bulk of the algorithm.

The next word is “GREEDS”. We’ll iterate over every letter in the word and each letter over every cell in the crossword until we find our first match. In this case, the “S” at the end of “GREEDS” matches the “S” at the start of “SHOP”.

Next, we check if we can place the word here – i.e., will it interfere with any other words negatively – and if we can place it, we determine where it will start and the direction it will go.

Finally, we add it:

Screenshot-2022-02-21-at-07.40.00

The next word that we pull from our list is “FAINT”. This word can’t be placed and will just be skipped over. After iterating over every letter in this word, and every cell on our crossword grid, we don’t find any matches at all.

Next, we get “SIMPLIFY”. Out first potential slot is with the “S” at the start of “SHOP”. However, we can’t place the word here because it would conflict with the word “GREEDS”. As such, we keep scanning the cells until we find that the “P” in “SIMPLIFY” matches the “P” in “SHOP”.

This is the right place – it doesn’t interfere with any other words – and so we can add it here:

Screenshot-2022-02-21-at-07.40.23

We can then repeat this process for each subsequent word until we run out of words or we have reached a certain number placed on the grid:

Screenshot-2022-02-21-at-07.42.40

At this point, we have our completed crossword.

3. Repeated Generation

So far, we can generate a crossword grid, and our first attempt worked quite well. However, a different set of words might generate something less impressive:

Screenshot-2022-02-16-at-07.43.00

In this case, the cause was down to the randomly selected words in our crossword.

3.1. Algorithm

We can improve the overall result by generating many crossword grids and selecting the best one.

If we have a way to score crosswords, we can simply generate many grids, score each one and keep only the highest scoring:

Rendered by QuickLaTeX.com

When doing this, we can either repeat the loop a given number of iterations for a given amount of time – maybe we want to get the best crossword that we can generate in 5 minutes – or the first one with a score above a specific value.

Or even some combination of these – we might want the first crossword with a score above a particular value or the best we can generate in 1 thousand iterations, whichever comes first.

3.2. Scoring Crosswords

Once we generate many crosswords, we need to decide what “best” means. This depends on the type of crosswords that we want to generate, but it could include:

  • The number of filled vs. blank squares: the more filled squares, the denser our crossword is.
  • The ratio of width vs. height: the closer this is to 1.0, the more square our resulting grid is.
  • The average length of the words: which we can then select for either longer or shorter words as we prefer.

Or anything else you want to use. The only important detail is that every crossword is scored similarly.

For example, a scoring algorithm that selects for denser, squarer crosswords might be something like:

Rendered by QuickLaTeX.com

Here we generate a score that is:

  • 10 * the ratio of the shortest side to the longest side. This means that our number will have a maximum value of 10 if it’s exactly square and be smaller the more rectangular it is.
  • 20 * the ratio of filled to empty squares. This means that our number will be 20 if exactly half the squares are empty, greater than 20 if more than half are filled, and less than 20 if more than half are empty.

If we apply this to the two grids that we’ve seen so far, we’ll see that the first one has a score of “21.92672999“, and the second will have a score of “12.3653512“, so our first grid is clearly better.

4. Repeated Word Placement

We now have a general algorithm for placing words into a grid, repeating this many times, and selecting the best result. But this will always produce the grids in the same way – placing a new word in the first place that it fits.

For example, our second grid placed “UNAPPROVED” coming from the “U” in “ODIOUS”, because that’s the first place that the first letter fits. This might not always be the best place to put the word.

It might be better to have instead placed it crossing at the “O” instead:

Screenshot-2022-02-16-at-12.59.44

This produces a square crossword – 10 x 6 instead of 14 x 6 that we had before – which is more desirable by our scoring algorithm.

4.1. Algorithm

We already have a means to determine which of a set of crosswords is “best” – our scoring algorithm. We could use this by placing the new word in every possible place and generating a score for each. We then use the placement that produced the highest score:

Rendered by QuickLaTeX.com

This works by first finding every single placement for the new word, then iterating over each one to find the one that produces the best new score. This board then becomes the new one to use.

Applying this to the placements of “UNAPPROVED”, we find that we get a score of “12.10702341” when it starts from the “U” in “ODIOUS”, and a score of “15.26829268” when it crosses at the “O” instead, so this is the better place to put it.

However, if it instead crossed at the “A” in “MANIA” then we get a score of “17.25806452” which is even better:

Screenshot-2022-02-16-at-12.37.37

4.2. Further Expansion

So far, this will find the best placement for any given the word. However, a suboptimal placement for one word may ultimately lead to a better overall result. For example, our above board was the best placement for the word “UNAPPROVED” but has resulted in several letters being very difficult, if not impossible, to place words from.

We could potentially improve on this by building a deeper tree of options. We can generate not only every possible placement for this word, but for each of those every possible placement for the next word, and keep going to a certain depth. Then we select the node at the top of the tree that leads to the best score at the bottom. This is similar to other search algorithms that we’ve explored in the past and can give excellent results.

5. Conclusion

Here we’ve seen some algorithms for generating crossword puzzles and explored how each one helps to improve on the previous and what can be further done.

Why not try implementing the tree search algorithm and see what puzzles you can come up with.

Comments are closed on this article!