Spaces:
Running
Running
Commit
·
35b670b
1
Parent(s):
ecf4dd1
Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ dictionary = pd.read_csv("corncob_lowercase.txt",
|
|
6 |
names = ['word'])
|
7 |
|
8 |
def spell_bee_solver(no_centre, centre):
|
|
|
9 |
spell_bee_solver = dictionary[dictionary['word'].str.contains(centre, regex = False)]
|
10 |
return(spell_bee_solver)
|
11 |
|
|
|
6 |
names = ['word'])
|
7 |
|
8 |
def spell_bee_solver(no_centre, centre):
|
9 |
+
print(centre)
|
10 |
spell_bee_solver = dictionary[dictionary['word'].str.contains(centre, regex = False)]
|
11 |
return(spell_bee_solver)
|
12 |
|