2025-09-12 21:22:49 +0300 MSK

Vowels Game in a String

Code

class Solution:
    def doesAliceWin(self, s: str) -> bool:
        return any(c in "aeiou" for c in s)