15
gsl_2437400954
1 5 16
958/ 1195
Last seen 2 months ago
Member for 10 months, 6 days
Difficulty Easy
Best reviews / Newest reviews
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
First-wurui1792
def goes_after(word: str, first: str, second: str) -> bool: if (first+second) in word: return True return False More