15
gsl_2437400954
1 5 16
958/ 1195
Last seen 1 month ago
Member for 9 months, 23 days
Difficulty Easy
Best reviews / Newest reviews
First-wurui1792
def goes_after(word: str, first: str, second: str) -> bool: if (first+second) in word: return True return False More
1-liner-Molot
def goes_after(word: str, first: str, second: str) -> bool: return word.find("first+second") print("Example:") print(goes_after("world", "w", "o")) More