Spaces:
Sleeping
Sleeping
Nazia Nafis
commited on
Commit
•
c9763ce
1
Parent(s):
93581fd
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ inclusions = st.text_input(label="Type in the letters in green/yellow:")
|
|
18 |
st.markdown("### Exclusion Letters")
|
19 |
exclusions = st.text_input(label="Type in the letters in grey:")
|
20 |
|
21 |
-
if len(inclusions) != 0:
|
22 |
st.markdown("## List of All Possible Words")
|
23 |
clue_result=[]
|
24 |
for word in five_letters:
|
|
|
18 |
st.markdown("### Exclusion Letters")
|
19 |
exclusions = st.text_input(label="Type in the letters in grey:")
|
20 |
|
21 |
+
if (len(inclusions) != 0 or len(exclusions) != 0):
|
22 |
st.markdown("## List of All Possible Words")
|
23 |
clue_result=[]
|
24 |
for word in five_letters:
|