chore: general update

This commit is contained in:
Rekai Nyangadzayi Musuka 2021-04-19 19:56:49 -05:00
parent a9d635a156
commit bf453a8439
1 changed files with 10 additions and 0 deletions

10
2021-04-19/max.py Normal file
View File

@ -0,0 +1,10 @@
dict = {}
for line in open("words.txt"):
word = line.strip()
final_letter = word[-1]
dict[final_letter] = word
print(dict)