-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwordleBot.py
77 lines (61 loc) · 2.26 KB
/
wordleBot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
with open('allWords.txt', 'r') as f:
POSSIBLE_ANSWERS = [line.strip() for line in f]
wordScore = {}
charFreq = {}
def filterWords(wordList, matches):
rejectedLetters = []
acceptedLetters = []
for index, match in enumerate(matches):
letter = match[0]
type = match[1]
if type == 0:
rejectedLetters.append(letter)
if type == 1:
wordList = [x for x in wordList if letter in x]
wordList = [x for x in wordList if x[index] != letter]
acceptedLetters.append(letter)
if type == 2:
wordList = [x for x in wordList if x[index] == letter]
acceptedLetters.append(letter)
for letter in rejectedLetters:
if letter in acceptedLetters:
wordList = [x for x in wordList if x.count(letter) == acceptedLetters.count(letter)]
continue
wordList = [x for x in wordList if letter not in x]
return wordList
def calcCharFreq():
charFreq.clear()
for i in range(ord('a'), ord('z')+1):
charFreq[chr(i)] = 0
for word in POSSIBLE_ANSWERS:
for char in word:
charFreq[char] += 1
def calcWordScore():
wordScore.clear()
for word in POSSIBLE_ANSWERS:
wordUnique = ''.join(set(word))
wordScore[word] = sum([charFreq[x] for x in wordUnique])
def sortPossibleAnswers():
POSSIBLE_ANSWERS.sort(key=lambda word: -wordScore[word])
for turn in range(6):
calcCharFreq()
calcWordScore()
sortPossibleAnswers()
print("Search Space:", len(POSSIBLE_ANSWERS))
optimalGuess = POSSIBLE_ANSWERS[0]
print(f'Optimal Guess: {optimalGuess}')
otherGuesses = []
for x in POSSIBLE_ANSWERS:
if wordScore[x] == wordScore[optimalGuess]:
otherGuesses.append(x)
if len(otherGuesses) > 0:
print('Other Recommended Guesses: ')
print(otherGuesses)
optimalGuess = input("Enter your guess: ")
if optimalGuess in POSSIBLE_ANSWERS: POSSIBLE_ANSWERS.remove(optimalGuess)
matches = input("Enter the result: ")
if matches == '22222':
print("Congratulations!")
quit()
matches = [list([optimalGuess[index], int(matches[index])]) for index in range(5)]
POSSIBLE_ANSWERS = filterWords(POSSIBLE_ANSWERS, matches)