Winning Conditions (solution)

by Josh Ain and Kai Huang with additional code by C. Scott Ananian and Andrew Lin

The idea is that by playing around with the app, you should discover more and more about how the game works. The most obvious thing is to figure out the 10 rules. They are:

It’s clear that not all of these rules can be satisfied by one guess. For example, no word in the SOWPODS list contains a letter that appears 4 times consecutively. The next thing to realize is that not all rules are in effect for each guess. By experimentation, you’ll discover that the same subset of rules are always in effect for each guess number. Furthermore, after figuring out the rules in effect for the first few guess numbers (say guess numbers 1-6), you may be able to conjecture some patterns. The rule enforcement patterns are as follows:

Given the either-or nature of the paired rules, only one combination of rules is satisfiable. Specifically, all the rules in effect are satisfiable only when the guess number is odd, non-prime, non-square, and fibonacci. The first such guess number is 21. The one word that can satisfy all of the rules 1, 2, 4, 6, 8, and 9 is NEAR.

And it’s a good thing that guess number 21 is satisfiable. Due to the fact that there are only 10 rules and you can only break each rule twice, by the time you get to guess number 21, you’ve exhausted all your wrong guesses. Either you win the game on guess number 21, or you lose due to breaking some rule for the third time.

Thus, in order to win the game on guess number 21, you must plan out the game such that you break each rule exactly twice in the first 20 guesses. There are many ways to do this. Here’s one example.

Guess number Guess Rule broken Guess number Guess Rule broken Guess number Guess Rule broken
1 ANSWER 7 8 ANSWERER 8 15 OF 4
2 REGRET 9 9 ZAP 6 16 AAA 2
3 FANS 9 10 ZAPPED 6 17 OFF 4
4 ANSWERS 7 11 BAT 5 18 BBB 2
5 ZIP 8 12 FOOD 3 19 AAA 1
6 EARNER 10 13 BUT 5 20 AAA 1
7 THUG 10 14 CAR 3 21 NEAR None!

If you get to guess number 21 and submit the correct word NEAR, you’ll win the game and receive the message:

  NEAR is correct. Another way of saying 'NEAR' is 'SO CLOSE'.

The answer to call in is SO CLOSE.