Spaces:
Running
Running
Commit
·
baefe79
1
Parent(s):
134ecd7
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ dictionary = pd.read_csv("corncob_lowercase.txt",
|
|
6 |
columns = ['word'])
|
7 |
|
8 |
def spell_bee_solver(no_centre, centre):
|
9 |
-
spell_bee_solver = dictionary[dictionary['word'].isin(
|
10 |
return(spell_bee_solver)
|
11 |
|
12 |
with gr.Blocks() as app:
|
|
|
6 |
columns = ['word'])
|
7 |
|
8 |
def spell_bee_solver(no_centre, centre):
|
9 |
+
spell_bee_solver = dictionary[dictionary['word'].isin(centre)]
|
10 |
return(spell_bee_solver)
|
11 |
|
12 |
with gr.Blocks() as app:
|