bradley6597 commited on
Commit
c449641
1 Parent(s): 9cb4940

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -7,7 +7,8 @@ dictionary = pd.read_csv("corncob_lowercase.txt",
7
  print(dictionary)
8
  def spell_bee_solver(no_centre, centre):
9
  no_centre_set = set(no_centre)
10
- spell_bee_solver = dictionary[dictionary['word'].str.contains(str(centre), regex = False)]
 
11
  final_words = list()
12
  for i in range(0, spell_bee_solver.shape[0]):
13
  words = spell_bee_solver['word'].iloc[i]
 
7
  print(dictionary)
8
  def spell_bee_solver(no_centre, centre):
9
  no_centre_set = set(no_centre)
10
+ # spell_bee_solver = dictionary[dictionary['word'].str.contains(str(centre), regex = False)]
11
+ spell_bee_solver = dictionary
12
  final_words = list()
13
  for i in range(0, spell_bee_solver.shape[0]):
14
  words = spell_bee_solver['word'].iloc[i]