Skip to content

Instantly share code, notes, and snippets.

@akirap3
Created November 28, 2020 02:46
Show Gist options
  • Save akirap3/38ed2c527f081c6bce5df17cb510f2ed to your computer and use it in GitHub Desktop.
Save akirap3/38ed2c527f081c6bce5df17cb510f2ed to your computer and use it in GitHub Desktop.
text1 = input("Enter a short text: ").lower()
text2 = input("Enter a long text: ").lower()

check = checkAllChr(text1,text2)
if check:
    answer = checkSequence(text1,text2)
    print(answer)
else:
    print("No")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment