2025-09-12 18:22:49 +0000 UTC
Vowels Game in a String
Categories:
Links
Code
class Solution:
def doesAliceWin(self, s: str) -> bool:
return any(c in "aeiou" for c in s)
class Solution:
def doesAliceWin(self, s: str) -> bool:
return any(c in "aeiou" for c in s)