chore: general update
This commit is contained in:
parent
a9d635a156
commit
bf453a8439
|
@ -0,0 +1,10 @@
|
||||||
|
|
||||||
|
dict = {}
|
||||||
|
|
||||||
|
|
||||||
|
for line in open("words.txt"):
|
||||||
|
word = line.strip()
|
||||||
|
final_letter = word[-1]
|
||||||
|
dict[final_letter] = word
|
||||||
|
|
||||||
|
print(dict)
|
Loading…
Reference in New Issue