Тёмный
Mike the Coder
Mike the Coder
Mike the Coder
Подписаться
This channel is mostly for Algorithms and Data Structures in C++. I help you through interview questions as well as competitive programming questions involving Graph Theory, Number Theory, Algorithms, Data Structures, and maybe probability.
Coding Interview Patterns: Two Heaps
19:40
7 месяцев назад
Channel Update new playlists on Modern C++
6:01
7 месяцев назад
Phd students need SCISPACE!!
1:38
10 месяцев назад
COME TO SAMSUNG DEVELOPER CONFERENCE 2023
3:33
11 месяцев назад
I HATE CODING INTERVIEWS
6:25
Год назад
I’m back! I’ll upload soon!
0:21
Год назад
CHANNEL UPDATE!!
1:29
Год назад
TRICK TO TRUNCATE OVERFLOW DECIMALS
2:50
2 года назад
SIMPLE TRICK TO PRINT A MATRIX
3:51
2 года назад
Комментарии
@NadidLinchestein
@NadidLinchestein 14 часов назад
Please make new videos on DSA
@noaht9184
@noaht9184 3 дня назад
Speak your shit king
@EvolutionG789
@EvolutionG789 4 дня назад
can u do it in c ?
@fiz6256
@fiz6256 7 дней назад
Wait i follow this guy on tiktoi
@guilherminhookkk
@guilherminhookkk 12 дней назад
Loved it
@learnitmyway5848
@learnitmyway5848 15 дней назад
bro being asian, you might be ruling cp ig
@jammel3653
@jammel3653 20 дней назад
I've done 100s of leetcode and usaco problems - probably the best explanation I've ever seen
@omar10x
@omar10x 20 дней назад
Wya bro
@Put_Up_Numbers
@Put_Up_Numbers 21 день назад
This was 100% FACTUAL
@jandrorojas6714
@jandrorojas6714 29 дней назад
Bro calm down 😂
@digonto2928
@digonto2928 Месяц назад
great explanation brother!! thank you
@synster693
@synster693 Месяц назад
you are just reading
@arsolevelsciencenotes230
@arsolevelsciencenotes230 Месяц назад
Thank you so much for the help <3
@mosalah151
@mosalah151 Месяц назад
Identifying the main question from the bunch history by itself is one challenge!!
@shreyas-mq4yd
@shreyas-mq4yd Месяц назад
Please make more videos for textbooks. I want textbook for DBMS and OOPS
@AmanKumar-nb4oh
@AmanKumar-nb4oh Месяц назад
great explanation man
@milesharris249
@milesharris249 Месяц назад
Nah, i didnt know Reed Richards was a real person 💀
@FireGamingPro
@FireGamingPro Месяц назад
Everyone: Nice content Me: who is Um_nik and why is he above tourist
@learntime2424
@learntime2424 Месяц назад
You have made mistake in the equation a + b = 3x a +b = 3y When sum this 2 equation we will get 2(a+b) = 3(x+y) But u have written 2(a+b) = 6(x + y) How this is possible?
@PottaHittamus
@PottaHittamus Месяц назад
It doesn't matter the condition still holds, that of a + b being divisible by 3 otherwise x + y wouldn't be an integer.
@therealraymondjones
@therealraymondjones Месяц назад
Did you solve 1000?
@dungeontnt
@dungeontnt Месяц назад
Wait your profile picture is now my favorite programing language
@Giovanni-rh1pw
@Giovanni-rh1pw Месяц назад
some python code to solve this without libs word = list(input()) n = len(word) ans = set() def solve(cur: list, options: list): if len(cur) == n: ans.add("".join(cur)) return for i in range(len(options)): solve(cur + [options[i]], options[:i] + options[i+1:]) solve([], word) print(len(ans)) for answer in sorted(ans): print(answer) basically this sets up a recursive function whose base case is when the length of the currently generated word reaches the size of the original word (which means the current permutation is done). otherwise, it iterates through the options of unused characters and calls the function again every iteration, removing the currently selected character from the options list and appending it to the current word permutation
@thenormalpen1900
@thenormalpen1900 2 месяца назад
oh my god, the amount of enthusiasm at the start of the video, just made me happy for some reason, probably cuz i was killing for this qs, thanks for the explaination!
@siddharthgoel35
@siddharthgoel35 2 месяца назад
This was amazing. felt like a buddy of mine was teaching me !
@liturgies
@liturgies 2 месяца назад
I mean the top of any quantitative subject tends to be very high iq people. Maybe even exclusively so
@shahidullahmuffakir668
@shahidullahmuffakir668 2 месяца назад
BS for binary search
@mrak5748
@mrak5748 2 месяца назад
I used to believe it to
@ShivamSridhar-gq2xl
@ShivamSridhar-gq2xl 2 месяца назад
the biggest dilemma of my life is choosing one on them.
@bigg.grizzlybear2670
@bigg.grizzlybear2670 2 месяца назад
Competetive programming is just combinatorics anyways go prep for the IMO
@sajeesyed3384
@sajeesyed3384 2 месяца назад
😂
@sharonjoe7535
@sharonjoe7535 2 месяца назад
im a fan of your enthusiasm
@anmolgamming1097
@anmolgamming1097 2 месяца назад
Hello sir how are you so let me introduce my self my name is anmol and i am a video editor having a experience of 3.5 so i want to say as begin a video editor Anlazie you RU-vid and a found someone mistakes due to this your RU-vid channel is not growing so i can edit and make your video more effective so if you're interested reply
@IEEE7
@IEEE7 2 месяца назад
Thinking of weather I should read a DSA book or just practice more and watch online courses ( time consumption differs a lot )
@LakshyaSeth-dp8gp
@LakshyaSeth-dp8gp 2 месяца назад
read clrs
@navis462
@navis462 26 дней назад
It’s bothering me too much I’m sorry. *whether
@chrisvo203
@chrisvo203 2 дня назад
you'll still have to practice even if you read a DSA book, just the same as if you were to watch online courses. you don't learn without practicing
@someshpatel7660
@someshpatel7660 2 месяца назад
Nice explaination. Quick and concise. Was able to solve all :P
@Isaak-bh1we
@Isaak-bh1we 3 месяца назад
the recursive function is not the best idea , if u have a linked list with 100000 element , u will get a stack overflow , so think again
@Ashh_Man
@Ashh_Man 3 месяца назад
Giving a codeforces contest ,this really came in clutch,Great work!!
@aaryansingh2004
@aaryansingh2004 3 месяца назад
Amazing video. You earned a subscriber
@YaloCat
@YaloCat 3 месяца назад
I'll say good phrase to describe what's really true. Programmers don't need hight IQ to program, no! But programmers mostpy have high iq for my opinion because you pearn new stuff 3D, 2D 1D, sometimes 4D and 5D. You understand programming language like language which other people don't understand and set it as arabian language. Imagine programmers would talk on python language in real life like: print("Hello!") print("Hi, what's up!") and say to me if that possible.
@darshanrajpattanaik2154
@darshanrajpattanaik2154 2 месяца назад
System.out.println("Touch some grass!");
@Ramu9119
@Ramu9119 3 месяца назад
Nice Explanation buddy
@arrenliu9487
@arrenliu9487 3 месяца назад
Thank you!
@yashvardhansinghsolanki659
@yashvardhansinghsolanki659 3 месяца назад
great explanation!!
@Negijicoder
@Negijicoder 3 месяца назад
mai bhi newbie ka thumbnail dekh kr aa gya..!! i'm idiot
@epsilonnought2648
@epsilonnought2648 3 месяца назад
Thanks Mike!!
@kaluginpeter
@kaluginpeter 3 месяца назад
Hey friend! Thanks for video! Great tips! Can you make advice? How to start learn competitive programming by this book?(I mean what read first?) Book1 then Book2 of CP4 and then read Handbook CP?
@ianjohnson5429
@ianjohnson5429 3 месяца назад
Thnaks for the approach. I sorted the list in descending order and returned the kth - 1 to access the element by it's index.
@KRISHNAGupta-u1m
@KRISHNAGupta-u1m 3 месяца назад
this code is not working and somehow throws an error
@hajji384
@hajji384 3 месяца назад
😂 just Google the solutions,
@denzelgalamgam
@denzelgalamgam 3 месяца назад
Can someone tell me whether this is satire.
@-Engineering01-
@-Engineering01- 4 месяца назад
Man, you're based. Subscribed
@preetijavali6595
@preetijavali6595 4 месяца назад
can we sort the monsters and just loop through to get alternate coins?