Alwaldend
Docs
Light
Dark
Auto
Docs
Misc
Leetcode submissions
2025-09-12 21:22:49 +0300 MSK
2025-09-12 21:22:49 +0300 MSK
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)