};
// These are words that'll never be used, but still need to be in the dictionary for guesses.
+// Number of words found: 1898
static const char _possible_words[][WORDLE_LENGTH + 1] = {
"AALII", "AARTI", "ACAIS", "ACARI", "ACCAS", "ACERS", "ACETA", "ACHAR", "ACHES",
"ACHOO", "ACINI", "ACNES", "ACRES", "ACROS", "ACTIN", "ACTON", "AECIA", "AEONS",
print("")\r
print(f"// From: {source_link}")\r
print(f"// Number of words found: {len(valid_words)}")\r
- i = 0\r
print("static const char _valid_words[][WORDLE_LENGTH + 1] = {")\r
+ i = 0\r
while i < len(valid_words):\r
print(" ", end='')\r
for _ in range(min(items_per_row, len(valid_words)-i)):\r
possible_words = capitalize_all_and_remove_duplicates(possible_words)\r
print("};")\r
print("\n// These are words that'll never be used, but still need to be in the dictionary for guesses.")\r
+ print(f"// Number of words found: {len(possible_words)}")\r
print("static const char _possible_words[][WORDLE_LENGTH + 1] = {")\r
i = 0\r
while i < len(possible_words):\r