Fix some alphabet $\Sigma$ and a positive integer $n$. What is the expected number of random letters drawn from $\Sigma$ until all length-$n$ words are present?
For example, let $\Sigma = \{0,1\}.$ Then the string "10" contains all possible 1-letter words, ie "0" and "1". The expected length for a random string is simply the coupon-collector problem with 2 cards... so the expected length is 3.
But it's more complicated when words can overlap. For the same alphabet and $n=2$ we can see that the string "00110" has all 2-letter words, and I claim that's the shortest string that does. But what's the expected length of a random string that contains all four strings "00", "01", "10", and "11"? The usual coupon-collector approach doesn't seem to work.