3227. Vowels Game in a String | Greedy | Strings

preview_player
Показать описание
In this video, I'll talk about how to solve Leetcode 3227. Vowels Game in a String | Greedy | Strings

Let's Connect:

About Me:
I am Aryan Mittal - A Software Engineer in Goldman Sachs, Speaker, Creator & Educator. During my free time, I create programming education content on this channel & also how to use that to grow :)

✨ Timelines✨

✨ Hashtags ✨
#programming #Interviews #leetcode #faang #maang #datastructures #algorithms
Рекомендации по теме
Комментарии
Автор

Your audio quality is so good. Can you please tell how you record audio with this clarity?

anubhavsharma
Автор

Aryan, I like your content, but I have a query. How will your videos help me improve my logical thinking, or will I just become dependent on your video solutions? What would be a more effective way for me to gain the most from your videos without becoming a passive learner? How can I apply your thinking process in future contests on coding platforms? I think it would be helpful if you suggested how Aryan, in our position, would make the most of these solution videos and improve his coding journey.

Address krna is comment ko, Maqsad tabhi pura hoga 😄

lavanyakataria
Автор

Sir, I really want to get good at Greedy problems suggest some good resources to learn

advaithmahendrakar
Автор

Wow 🤩

Thanks for making it simple ⚡

AbhijeetMuneshwar
Автор

When the world needed him the most, he disappeared🥲

yuvanshanmugarajt
Автор

nice....please give me the solution of 3225. Maximum Score From Grid Operations

subhadrosamaddar
Автор

4 weeks since last update, you doing well ?

cenacr
Автор

I wasted time on in I thought of recursion and dp bcz of game theory but after a while I fotried greedy and got accepted 😮😂

Raider-oskt
Автор

kahan hai bhai? mujhe ab solution kaun samjhayega. woh toh acha hai ki abhi LC(hard) ques nhi aa rhe potd mein

Tarunsrivastava-qv
Автор

i was studin
unhide them and list them with the playlist

abhinavsoni
Автор

where are u from last 4 days?? Is Everything Ok..?

TinaElena-bu
Автор

bhai weekly contest 383 ke video solutions private kyu kr diye?

cod-phy
Автор

Mittal bhai kaha chale gae hum sabko ko chod ke ?

aadityatripathi
Автор

bro what happen to you, busy with work? personal timeoff?

sarankumaar
Автор

Can u please make video on "3272. Find the Count of Good Integers" . (please please * Integer.MAX_VALUE)

minutes_cs
Автор

I am so stupid that's why i am unable to solve that question after taking half an hour on that even i solved 3rd question in 5 mins

vinitverma
Автор

Aryan Bhaiya has not been posting videos recently because he has undergone a hair transplant. I request you all to pray for our brother.

AKASHPANDEY-cd
Автор

Are bhai ab to wapas aa jao kiske post contest discussion dekhe hum

GYANKIBAAT-zend
Автор

Finally after waiting for a long time UnSubscribed

yashwairagade
Автор

unordered_set<char>vowels={'a', 'e', 'i', 'o', 'u'};
for(auto ch:s){
if(vowels.contains(ch)) return 1;
}
return 0;

Sachin--