Majority Element I | Brute-Better-Optimal | Moore's Voting Algorithm | Intuition 🔥|Brute to Optimal

  Рет қаралды 362,577

take U forward

take U forward

Күн бұрын

Пікірлер: 680
@takeUforward
@takeUforward Жыл бұрын
Please watch our new video on the same topic: kzbin.info/www/bejne/rKi9m2SBZcpsi5o
@suchitakulkarni2744
@suchitakulkarni2744 7 ай бұрын
Bhai have a doubt .. after the loop if we check cnt is not equal to 0 and return el then also the program executes properly then why we are again taking second loop ..?
@pallavi22222
@pallavi22222 6 ай бұрын
@@suchitakulkarni2744 The first loop will only give you the majority element, the second loop is used to check whether the frequency of the element from the first loop is greater than n/2. You can clearly understand this by watching once again the video from 13.00 where raj bhai explains by changing the last 4 elements to 1.
@ShreyasinghIITPATNA
@ShreyasinghIITPATNA 6 ай бұрын
int majorityElement(vector v) { int n=v.size(); sort(v.begin(),v.end()); return v[n/2]; } this is also accepted and time complexity is O(nlogn) space is O(1)
@aadeshkumar819
@aadeshkumar819 5 ай бұрын
@@suchitakulkarni2744 if the problem statement says that there will always be a majority element then you don't need the second loop but if it doesn't guarantees a majority element then you have to check. timestamp : 17.00 . hope this clears
@ammankhan3370
@ammankhan3370 2 ай бұрын
@@ShreyasinghIITPATNA how? whats the last line return v[n/2];
@factsmadeiteasy9943
@factsmadeiteasy9943 Жыл бұрын
No matters how hard the paid courses gang will try to defame you or stop you , we STUDENTS will never stop promoting you among our friends and support you in your journey.❤❤
@346_PrachiRaut
@346_PrachiRaut 9 ай бұрын
"sitting in an interview u cannot invent the algorithm" LMAOOOO xd
@akashgite905
@akashgite905 6 ай бұрын
tell them brute force then 🙂
@krunalkp1032
@krunalkp1032 8 күн бұрын
That's true how the hell someone can come up with this algorithm with their own , unless he is really well versed in math
@anilkumar4200
@anilkumar4200 Жыл бұрын
Thanks for lectures from bottom of my heart.Keep doing good work.
@takeUforward
@takeUforward Жыл бұрын
Let's march ahead, and create an unmatchable DSA course! ❤ Use the problem links in the description.
@harshavardhan184
@harshavardhan184 Жыл бұрын
Hatsoff to this consistency
@CodeBoost8375
@CodeBoost8375 Жыл бұрын
Time Stamp 0:43 - Problem Statement 1:45 - Brute Force Solution 2:58 - Better Solution 4:46 - Code (Better Solution) 6:58 - Optimal (Moore's Voting Algorithm) 7:38 - Dry run + Intuition 14:37 - Code 16:52 - Time complexity 17:36 - Outro
@umakantbhosale4718
@umakantbhosale4718 Жыл бұрын
Hey Striver bro , It will be humble request from myside that could you please explain the approaches in Hindi&English language if possible. It will be very useful for many of students like me.
@utsavseth6573
@utsavseth6573 Жыл бұрын
You dont have to ask for likes RAJ. You will get them even if you dont say. THis level of top notch content will not go un-noticed.
@DeepakLalchandaniProfile
@DeepakLalchandaniProfile Жыл бұрын
Wow hats off ❤❤❤🎉
@aamirarshad4536
@aamirarshad4536 Жыл бұрын
one leetcode a day keeps unemployment away
@shubhamkumar-hx1fb
@shubhamkumar-hx1fb Жыл бұрын
Bro... don't ever say this 🤐
@jaswanthreddy7135
@jaswanthreddy7135 11 ай бұрын
Really?
@barnam_das
@barnam_das 10 ай бұрын
wah arshad wah
@utkarshrai101cartoonwala
@utkarshrai101cartoonwala 8 ай бұрын
Reality is often disappointing.
@rishabhranjan5162
@rishabhranjan5162 7 ай бұрын
not even the bare minimum to get a job bro
@bhubeshsr6281
@bhubeshsr6281 Жыл бұрын
Striver Bhai Level of Dedication and hardwork u put on this is .....
@lisachakraborty528
@lisachakraborty528 11 ай бұрын
u make me fall in love with coding there was a tym i hated it i started late but yes you are true inspiration
@NeelakshiSachdeva
@NeelakshiSachdeva 6 ай бұрын
I'm hating it now. Not able to build intuition myself. Always dependent on video solutions. Sometimes I feel I'm too dumb and not built for this thing. What should I do 😭😭
@lofi_world_4.7
@lofi_world_4.7 3 ай бұрын
@@NeelakshiSachdeva uss bro uss
@geotalesalltime
@geotalesalltime 2 ай бұрын
@@NeelakshiSachdeva don't give up ! are you still practicing now
@NeelakshiSachdeva
@NeelakshiSachdeva Ай бұрын
@@geotalesalltime yes I got back again 🥺
@geotalesalltime
@geotalesalltime Ай бұрын
@NeelakshiSachdeva carry on, 4th yr placement season is going on, very tough situation 💀🥲
@anizmo
@anizmo 23 күн бұрын
Great explanation of Moore's Voting Algo, very intuitive. Intuition: when there is a majority element its count will not be cancelled out.
@impalash_ag
@impalash_ag 7 ай бұрын
Hi Raj, Thanks for the video. As per your explanation, one more slight optimisation we can do in Moore's Voting Algorithm if we're not sure whether majority element exists. Say we have array size n and n%2==0(means and even size array) and if our count value at last is also 0 in that case we do not need to go to the 2nd step i.e. traverse the whole array again to get the occurrence of element(ele variable value). Hope it makes sense.
@ParasSharma-mf8or
@ParasSharma-mf8or Жыл бұрын
0:00 Introduction of course 0:46 Majority Element(>n/2) 1:48 Brute approach 2:17 Pseudo code (Brute) 2:56 Better solution 4:45 Code-compiler (Better solution) 6:59 Optimal(Moore's Voting Algorithm) 7:56 Algorithm explanation+Dry run 14:37 Code-compiler (Optimal approach)
@Surya1prakash
@Surya1prakash Жыл бұрын
Understood! Bhai never gone through such type of explanation ....thank you very much....
@Mrindia-k8n
@Mrindia-k8n 3 ай бұрын
00:04 The problem is to find the majority element in an array, which appears more than n/2 times. 02:08 Implementing the Brute Force solution and understanding its time complexity 04:12 Iterate in the map to find the element occurring more than n/2 times 06:17 The Moore's Voting Algorithm is an optimal algorithm to find the majority element in an array. 08:22 The majority element in an array can be determined using Moore's Voting Algorithm. 10:37 The majority element in the given array is 5. 12:51 The majority element is determined using Moore's Voting Algorithm. 15:04 Implement Brute-Better-Optimal algorithm using Moore's Voting Algorithm to find the majority element. 17:12 The time complexity of the most optimal solution is O(n) and the space complexity is O(1).
@ArcGaming07YT
@ArcGaming07YT Жыл бұрын
Let me help u guys understand : point 1 : moores law gives ans when there is strictly majority element present in the array. point 2 : use this example to understand it in clear way [1,2,1,3,1,4,1,5,1] if last last number was not 1 then it clearly means that there is no majority element in array else its 100% that it will be the last element in above example point 3 : understand it more by seeing these examples [1,2,3,4] gives ans as 4 but its not valid array as (there is no majority element in it) point 4 : there is no chance that we will get any other number other than majority number as ans,if there is strictly majority number present in the array and if the array is not only the valid array i,e(there is no majority element in it) then ans can be any value.
@ahtesham4003
@ahtesham4003 Жыл бұрын
👏👏
@anmolprasad6813
@anmolprasad6813 Жыл бұрын
Thanks bro, I was so confused on this point (We could get 1 as the ans despite it not being majority) but your comment cleared it
@AffairWithGeo
@AffairWithGeo Жыл бұрын
So this is valid if there is strictly a majority, else not possible? [2 2 2 1 1 1 3 3] as per the video logic 3 comes as majority. But N/2 = 8/2 = 4 to be an answer, answer has to satisfy, answer > 4. So seems like no way to . . . .??? Plz help to make things clear
@aryanpinto5105
@aryanpinto5105 Жыл бұрын
@@AffairWithGeo The question does mention that there does exist a majority element. Your test case itself is invalid becoz it doesn't have any majority element.
@lucy2003-d8p
@lucy2003-d8p Жыл бұрын
i dont know why but you really helped me😊😊
@ashishbm3565
@ashishbm3565 Жыл бұрын
very great intutions bhaiyaa!!! you are a legend. never thought i would be enjoying dsa and leetcode like this... i dont care i get a job or not but i have to finish this just for the thrill!!!
@shubhamagarwal1434
@shubhamagarwal1434 5 ай бұрын
#Free Education For All.. # Bhishma Pitamah of DSA...You could have earned in lacs by putting it as paid couses on udamey or any other elaerning portals, but you decided to make it free...it requires a greate sacrifice and a feeling of giving back to community, there might be very few peope in world who does this...."विद्या का दान ही सर्वोत्तम दान होता है" Hats Off to you man, Salute from 10+ yrs exp guy from BLR, India..
@CodeBoost8375
@CodeBoost8375 Жыл бұрын
Understood! Very well.None of them can match your dedication and energy.🔥🔥🔥🔥 And when you explain how algorithm is working the first thing comes in my mind damm! Yarr ye to kisi ne bataya hi nahi tha how the cnt is working.
@manipandit18
@manipandit18 Жыл бұрын
Understood !!! Time Stamp 0:43 - Problem Statement 1:45 - Brute Force Solution 2:58 - Better Solution 4:46 - Code (Better Solution) 6:58 - Optimal ( Moore's Voting Algorithm ) 7:38 - Dry run + Intuition 14:37 - Code 16:52 - Time complexity 17:36 - Outro
@Rohan-ce1sy
@Rohan-ce1sy Жыл бұрын
Very good explanation. Better than any paid DSA course in market. Thank you so much Striver bhai.
@MaheshPatil-of1zy
@MaheshPatil-of1zy 10 ай бұрын
Seating in Interview you cant discover this algorithm🤣🤣🤣🤣🤣
@cinime
@cinime Жыл бұрын
Understood! Super fantastic explanation as always, thank you so much for your effort!!
@amanpreetsinghbawa1600
@amanpreetsinghbawa1600 Ай бұрын
Striver just when you mentioned about the keeping the count & element variable, I almost solved it that moment. Thanks for building up that intuition skills, it's been 2 months since I have been practicing via ur playlist🔥
@yasiromar5117
@yasiromar5117 11 ай бұрын
Loved the way you explained brother. You're a true magic man
@supriyamanna715
@supriyamanna715 Жыл бұрын
Buk e amar gorom rokto, amra striver er vokto! great content!
@rickk3300
@rickk3300 11 ай бұрын
Nice one 😂👌
@waytoeterrnalpeace
@waytoeterrnalpeace 4 ай бұрын
are amio bangali, striverer bhokto🤝🤝
@vigneshkrishnan3766
@vigneshkrishnan3766 Жыл бұрын
you can use this solution too........ sort(a.begin(),a.end()); int mid=a.size()/2; return a[mid];
@theprogamer3924
@theprogamer3924 Жыл бұрын
nicely explained. even though I slept while watching the video, I woke up again and understood the solution xD thanks
@Manishgupta200
@Manishgupta200 Жыл бұрын
Super Duper Amazing... Your explaination from brute-better-optimal is fantastic with Time and Space complexity. Moor's Voting Algorithm explained by you is really awesome without using any extra space. The best thing like once in a blue moon type.. I liked the most is you explain in a unique way in every tutorial.. Here is.. like.. How Time complexity is O(N) not added (because in problem, array have atleast one majority element. So, here TC < O(N) always at the time of checking majority) in Moore's Voting algorithm at the time of checking 'el' is majourity or not.. And also you explain Space Complexity also. Thankyou Striver for such an amazing tutorial 🔥.
@DevUpadhyay-q5i
@DevUpadhyay-q5i 3 ай бұрын
U r really great teacher of dsa...
@mahakdashore8264
@mahakdashore8264 Жыл бұрын
what a WONDERFULL EXPLANATION sir,understood every thing,please keep making these kinds of videos for us sir, please
@sarangkumarsingh7901
@sarangkumarsingh7901 10 ай бұрын
Understood Sir.............Awesome lec.......
@rishabh1S
@rishabh1S Жыл бұрын
Understood! Moore's Voting Algorithm is Awesome.
@aurobindsahu4355
@aurobindsahu4355 Жыл бұрын
Understood &&&&&& Love from odisha bhaiya
@DeepakPatel-d5v
@DeepakPatel-d5v Жыл бұрын
Thank You Striver Bhaiya for Such a Quality Content...
@habeeblaimusa4466
@habeeblaimusa4466 Жыл бұрын
Consistency 🔥 🔥. Thanks for all you do. I really appreciate
@shadowslayer2248
@shadowslayer2248 8 ай бұрын
Understood and practiced the code as always! Let's really Take Ourselves Forward!!
@shubhamjoshi8117
@shubhamjoshi8117 11 ай бұрын
@takeUForward , awesome explanation, really appreciate your efforts. The way you explain stuff is really remarkable. I see a small bug in the code class Solution: def majorityElement(self, nums: List[int]) -> int: ele = None count = 0 for num in nums: if count == 0: ele = num # count += 1
@sajeethabegum4740
@sajeethabegum4740 11 ай бұрын
Very good explanation. Easy to understand. Thanks for posting this video. Hats off to your dedication.
@ayushgupta0
@ayushgupta0 Жыл бұрын
understood. I am going to make that interviewer happy.
@rumiNITPatna
@rumiNITPatna 2 ай бұрын
thanku so much striver! i started loving dsa because of u
@hectorf44
@hectorf44 Жыл бұрын
Thanks!
@JAY-bq4kw
@JAY-bq4kw Жыл бұрын
class Solution { public: int majorityElement(vector& nums) { sort(nums.begin(),nums.end()); return nums[nums.size()/2]; } };
@calisthenics5247
@calisthenics5247 Жыл бұрын
Try your code for [1, 1,2,2]
@_CodeLifeChronicles_
@_CodeLifeChronicles_ 7 ай бұрын
oh my god the best course ever
@anjalisharmav0307
@anjalisharmav0307 2 ай бұрын
just a quick reminder for you bhaiya: thank you for making the course!
@KhannaPadala
@KhannaPadala Жыл бұрын
Understood bro, your explanation is top notch..
@deepalivarshney23
@deepalivarshney23 6 ай бұрын
literally you are amazing .
@vivekreddymynampati6996
@vivekreddymynampati6996 Жыл бұрын
class Solution { public: int majorityElement(vector& nums) { int n=nums.size(); sort(nums.begin(),nums.end()); return nums[n/2]; } };
@calisthenics5247
@calisthenics5247 Жыл бұрын
Try your code for [1, 1,2,2]
@WabiSabiThereader
@WabiSabiThereader Ай бұрын
Thank you sir you are a blessing to us students
@dixitnakhva6181
@dixitnakhva6181 11 ай бұрын
2 things: 1) this algo will give you majority element but it can be true for only last some portion of array(i.e 2 3 2 3 1 algo will give you 1 but it's only true for last portion of array which [1] and it's of size 1 but it's not true for whole array) , now comes to 2nd step 2) algo give you probable majority element, now check whether it's correct or not by iterating over an array In case of 2 3 2 3 1 Algo gives you 1 as probable majority element Now, by applying 2nd you will find out that 1 is not majority element if we consider whole array of size 5 So, it means array doesn't have any majority element Because if it does, it would have caught by algo But the probable majority element that algo gives us (1) is also not an answer, so there is no majority element in an array
@rakeshnagarkar8759
@rakeshnagarkar8759 5 ай бұрын
I stuck with the algorithm thinking that it only works with last portion of array to find majority element but your excellent explanation removed my confusion, thank you.
@dixitnakhva6181
@dixitnakhva6181 5 ай бұрын
@@rakeshnagarkar8759 you're welcome dear
@DevashishJose
@DevashishJose Жыл бұрын
Understood, Thank for explaining it so beautifully.
@dhruvrawatt9
@dhruvrawatt9 Жыл бұрын
Looking forward more such videos from you bhaiya , you are awesome.
@MAX_RITIK
@MAX_RITIK 7 ай бұрын
i just watch the video ,understand the concept but doesn"t code right away i try to solve the same question on leetcode after 1-2 days .this relly help me to use my own mind while code . and amazing job striver for making coding simpler
@Nithishkumar-bx9jf
@Nithishkumar-bx9jf 10 ай бұрын
Understood! Really enjoyed your DSA lecture series ❤
@manan-543
@manan-543 Жыл бұрын
Understood. Your explanation is amazing.
@syedtahaseen4468
@syedtahaseen4468 3 ай бұрын
06:48 All elements in the array are not unique though. There will be an element of size N/2+1 so in worst case the sc will be O(N/2+1). But yeah we will take it O(N/2+1) ~ O(N).
@Code_eat_sleep
@Code_eat_sleep Жыл бұрын
Understood . Thank you so much bhaiya for such a clear explanation.
@padduchennamsetti6516
@padduchennamsetti6516 5 ай бұрын
understood very well,you are a gem
@tholetigaargyreddy2613
@tholetigaargyreddy2613 5 ай бұрын
understood🥰🥰🥰🥰🥰best DSA videos everr
@himadriroy7980
@himadriroy7980 Жыл бұрын
Oh God dimag hil Gaya pura. How did someone invent so innovative algorithms and how can someone explain it so lucidly. Striver daa you are just CODING GOD. Uff 🔥🔥🔥. May God bless you always. ❤️❤️
@merlingrace6850
@merlingrace6850 Жыл бұрын
Thank you for such in-depth explanation and course❣
@secretcoder7
@secretcoder7 Жыл бұрын
GREAT man on this earth
@infernogamer52
@infernogamer52 Жыл бұрын
Understood bhaiya ! Thanks a lot
@pratikgupta7373
@pratikgupta7373 Жыл бұрын
wow really good and interactive lecture
@Mrindia-k8n
@Mrindia-k8n 3 ай бұрын
understood brother you are the best
@shitalpashankar3117
@shitalpashankar3117 Жыл бұрын
Love the way u teach, wonderful... thnks
@sekharkumar3824
@sekharkumar3824 2 ай бұрын
Super Very well explained. Thank you
@reki7247
@reki7247 Жыл бұрын
wonderful way of teaching!!! Understood!
@torishi82
@torishi82 6 ай бұрын
Amazing work. Respect!!
@shesparks64
@shesparks64 Жыл бұрын
Thanks for making concept soo simple to understand :)
@riyadhossain1706
@riyadhossain1706 Жыл бұрын
I really appreciate your hard work, bhaiya. Love from the core of my heart from Bangladesh 💝💝
@radheshpandey4659
@radheshpandey4659 Жыл бұрын
@takeUforward, Bhayia this course is really awesome.💯
@RamKumar-dm6es
@RamKumar-dm6es Жыл бұрын
"Sitting in interview , You can't invent this algorithm" funny line. And Understood
@mariselvamdheivasigamani578
@mariselvamdheivasigamani578 Жыл бұрын
Understood. Awesome explanation
@shyam.upadhyay
@shyam.upadhyay Жыл бұрын
Awesome content bro, love you!
@anuragbhardwaj13
@anuragbhardwaj13 Жыл бұрын
While solving the problem I wrote my own solution, it's O(nlogn) because we need to sort the array but it's passing all testcases and even time complexity test : just have a look at it : static int majorityElement(int a[], int size) { // your code here //sorting array here will take O(nlogn) Arrays.sort(a); int count=0; //traversing array once O(n) for(int i=0;i0&&a[i]>a[i-1]){ count=0; } //else increasing count count++; //checking majority if(count>size/2){ return a[i]; } } return -1; }
@AdityaKumar-be7hx
@AdityaKumar-be7hx Жыл бұрын
If you sort the array then the answer is simply the element at n/2 index it the sorted array. Nothing to do after sorting
@firstacc5442
@firstacc5442 Жыл бұрын
@@AdityaKumar-be7hx 😂😂😅
@m_fi8926
@m_fi8926 4 ай бұрын
ohhh
@konankikeerthi
@konankikeerthi 7 ай бұрын
Understood bro. Thank you for your efforts
@hari7939
@hari7939 Жыл бұрын
Just no words to thank you 🙏🙏🙏
@ishasinghal3457
@ishasinghal3457 Жыл бұрын
Best explanation ever❤❤
@zskhan7496
@zskhan7496 Жыл бұрын
Hamara driver top gear me gaadi chala raha hai 🔥🔥🔥😁
@CodeQuest_28
@CodeQuest_28 Жыл бұрын
great explanation of moore voting algo..
@aryan6470
@aryan6470 Жыл бұрын
Pta ni comment ap tak pahuchega ki ni bt this means alot t us which i can describe in the words ❤
@SaiPrakashJ-c9m
@SaiPrakashJ-c9m 12 күн бұрын
Understood👍 Thank you so much
@kaichang8186
@kaichang8186 3 ай бұрын
understood, thanks for the great explanation
@shubha_jagadeesh
@shubha_jagadeesh 3 ай бұрын
as always , well understood 💌
@desiquant
@desiquant 16 күн бұрын
I don't think you need to loop over the map to find the majority element. You can add an if statement next to where you update the frequency of the map as following: freqMap[nums[i]]++; if (freqMap[nums[i]] > nums.size() / 2 ) { res = nums[i]; break; }
@Future_software_enginneer
@Future_software_enginneer 11 ай бұрын
Done .. Concept clear but want to do revise ❤😊 pls like so it remind me to watch again for revision thankyou bhaiyaa love uh ❤
@twinklelight9829
@twinklelight9829 Жыл бұрын
thankyou striver!!!! we appreciate your work☺☺
@Hipfire786
@Hipfire786 9 ай бұрын
understood everything sir awesome video
@Sachinkumar-ou5vu
@Sachinkumar-ou5vu 10 күн бұрын
#bhai shab what an amazing explanation
@as_if
@as_if 6 ай бұрын
12:40 the count has no significance but if the count=0, then there shouldn't be any majority element. That's what it's significance is. Right?
@shreyaschauhan229
@shreyaschauhan229 15 күн бұрын
Thank you sir for this.
@berserker556
@berserker556 8 ай бұрын
Very well explained
@samuelfrank1369
@samuelfrank1369 Жыл бұрын
Understood. Thanks a lot . Please make more videos
@vanshjais1777
@vanshjais1777 Жыл бұрын
huge respect for you no words 💖
@shyam.upadhyay
@shyam.upadhyay Жыл бұрын
In the optmal solution, we can directly return the element there is no need for another for loop. And in case it doesn't exist then, we can just check if the count is 0 or not and return the ele or -1.
@Srinivasssssss
@Srinivasssssss Жыл бұрын
But it will not work when the input array having odd length..!
@sunilkamat8199
@sunilkamat8199 Жыл бұрын
Superb Explanation 😍
@KrishnaSagar02
@KrishnaSagar02 Жыл бұрын
Understood very well brother.
@shashankshekharshukla5743
@shashankshekharshukla5743 Жыл бұрын
Thankyou bhaiya may God bless you always. Love you 💗 striver
@Engineer-fo1dl
@Engineer-fo1dl 11 ай бұрын
Understood Clearly ❤
@KunalSENPAI
@KunalSENPAI Жыл бұрын
Awesome explanation as always!!
@shubhamlipane8634
@shubhamlipane8634 Жыл бұрын
Understood Thank You :-)
Kadane's Algorithm | Maximum Subarray Sum | Finding and Printing
20:09
take U forward
Рет қаралды 537 М.
Majority Element II | Brute-Better-Optimal
26:58
take U forward
Рет қаралды 218 М.
Sigma girl VS Sigma Error girl 2  #shorts #sigma
0:27
Jin and Hattie
Рет қаралды 124 МЛН
БАБУШКА ШАРИТ #shorts
0:16
Паша Осадчий
Рет қаралды 4,1 МЛН
OCCUPIED #shortssprintbrasil
0:37
Natan por Aí
Рет қаралды 131 МЛН
Majority Element - Leetcode 169 - Python
14:39
NeetCode
Рет қаралды 116 М.
Maximum Product Subarray - Best Intuitive Approach Discussed
20:27
take U forward
Рет қаралды 255 М.
How I would learn Leetcode if I could start over
18:03
NeetCodeIO
Рет қаралды 772 М.
Count Subarray sum Equals K | Brute - Better -Optimal
24:09
take U forward
Рет қаралды 368 М.
Next Permutation - Intuition in Detail 🔥 | Brute to Optimal
28:15
take U forward
Рет қаралды 502 М.
7 Outside The Box Puzzles
12:16
MindYourDecisions
Рет қаралды 162 М.
Fast Inverse Square Root - A Quake III Algorithm
20:08
Nemean
Рет қаралды 5 МЛН
Count Inversions in an Array | Brute and Optimal
24:17
take U forward
Рет қаралды 263 М.