You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
def helper_get_subsequences(s: str) -> List[str]:
"""Helper function to get all subsequences of a string."""
sequence = s.split()
if len(sequence) <= 2:
return []
But this means that length 1 candidate terms subsequences are not included as subsets of length 2 terms, and length 2 terms are not included as supersets of length one terms.
This is not correct when have_single_word == True.
Thanks!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In combo_basic.py, we have
But this means that length 1 candidate terms subsequences are not included as subsets of length 2 terms, and length 2 terms are not included as supersets of length one terms.
This is not correct when
have_single_word == True
.Thanks!
The text was updated successfully, but these errors were encountered: