From e6af379dbb0d79f18cf27809643211847371973f Mon Sep 17 00:00:00 2001 From: chayan das Date: Fri, 12 Sep 2025 09:51:37 +0530 Subject: [PATCH] Create 3227. Vowels Game in a String --- 3227. Vowels Game in a String | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 3227. Vowels Game in a String diff --git a/3227. Vowels Game in a String b/3227. Vowels Game in a String new file mode 100644 index 0000000..09b9833 --- /dev/null +++ b/3227. Vowels Game in a String @@ -0,0 +1,11 @@ +class Solution { +public: + bool doesAliceWin(string s) { + for(char x:s){ + if(x=='a' || x=='e' || x=='i' || x=='o' || x=='u'){ + return true; + } + } + return false; + } +};