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; + } +};