Alwaldend
Docs
Light
Dark
Auto
Docs
Misc
Leetcode submissions
2025-09-12 18:22:49 +0000 UTC
2025-09-12 18:22:49 +0000 UTC
Vowels Game in a String
Tags:
Generated
Leetcode_submission
Links
https://leetcode.com/submissions/detail/1768575799/
Code
class
Solution
:
def
doesAliceWin
(self, s: str)
->
bool:
return
any(c
in
"aeiou"
for
c
in
s)