2025-09-12 18:22:49 +0000 UTC

Vowels Game in a String

Code

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