Spaces:
Sleeping
Sleeping
Rick-Xu315
commited on
Commit
·
aa4ba37
1
Parent(s):
5832b95
debug
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ def process(text1, text2,function):
|
|
66 |
(token[2:], token[0] if token[0] != " " else None)
|
67 |
for token in d.compare(text1, text2)
|
68 |
]
|
69 |
-
elif function=="
|
70 |
return(word_lcs(text1,text2))
|
71 |
|
72 |
|
|
|
66 |
(token[2:], token[0] if token[0] != " " else None)
|
67 |
for token in d.compare(text1, text2)
|
68 |
]
|
69 |
+
elif function=="Largest Common Subsequence":
|
70 |
return(word_lcs(text1,text2))
|
71 |
|
72 |
|