5 Simple Steps for Solving Dynamic Programming Problems

  Переглядів 986,957

Reducible

Reducible

День тому

In this video, we go over five steps that you can use as a framework to solve dynamic programming problems. You will see how these steps are applied to two specific dynamic programming problems: the longest increasing subsequence problem and optimal box stacking. The five steps in order are as follows:
1. Visualize examples
2. Find an appropriate subproblem
3. Find relationships among subproblems
4. Generalize the relationship
5. Implement by solving subproblems in order
After taking an in depth look at these problems, at the end of the video we will also have a discussion about common subproblems that you may encounter while solving dynamic programming problems.
Error correction: for the box problem, using dictionary solutions only works if we are given unique boxes -- using a list of subproblems would be a better way to solve it if we wanted to handle duplicate boxes (similar to how we did the longest increasing subsequence).
Support: / reducible
This video wouldn't be possible without the open source manim library created by 3blue1brown: github.com/3b1b/manim
Here is link to the repository that contains the code used to generate the animations in this video: github.com/nipunramk/Reducible
Music:
Prelude No. 2 by Chris Zabriskie is licensed under a Creative Commons Attribution license (creativecommons.org/licenses/...)
Source: chriszabriskie.com/preludes/
Artist: chriszabriskie.com/
All other music by Aakash Gandhi

КОМЕНТАРІ: 478
@balkiskaroui882
@balkiskaroui882 Місяць тому
Thank you for teaching me in 20 minutes what my professor could not explain in 2 hours , please keep making content !
@airmanfair
@airmanfair 3 роки тому
Press F to pay respects to all the people out there that chose the wrong subproblem definition during an interview.
@ArabicNameGuy
@ArabicNameGuy 2 роки тому
ف
@agtugo9197
@agtugo9197 2 роки тому
F to myself.
@thux2828
@thux2828 Місяць тому
Wait? DP problems come up in interviews a lot?
@verdikapuku2596
@verdikapuku2596 17 днів тому
@@thux2828 Yes. FAANG companies love to ask the hardest questions. Typically that means DP, Graph, and Tree algo problems
@williambertolasi1055
@williambertolasi1055 3 роки тому
I love this method to explain. Good job! You have mixed the math reasoning and the practical implementation in an ordered and logical way.
@yangweiyili2514
@yangweiyili2514 2 роки тому
I can't thank you more for this video! Most videos out there put a lot of efforts explaining how to solve a dynamic problem with recursion, memoization, bottom-up yadayada... But for me, the most challenging part is figure out what on the earth the problem wants me to do! Your five steps really point out a promising pattern that I can build my own thinking process with. Thank you!
@linchen1756
@linchen1756 3 роки тому
I really like how your explain and visualize the problem for us. Really appreciate your work. Looking forward to learning more concepts from your video
@jduckkk_
@jduckkk_ 3 роки тому
Thank you so much for generalizing such a complex problem in such an way that is so easy to understand. Keep up the great work!
@tristandam8026
@tristandam8026 3 роки тому
Wow, you’re gonna blow up dude. These animations are insanely good for learning. Amazing work
@koober_
@koober_ 3 роки тому
Unlike most of the other DP videos out there, this one goes into both simple (yet non-trivial) and challenging examples, which are way more likely to be seen in an interview setting instead of problems like Fibonacci, which are beaten to death. The animation is great and the use of DAGs for visualization really helps things click. I'm genuinely surprised I haven't seen most other resources explicitly mention this DAG-based way of thinking about DP problems before, because it makes it infinitely easier to identify subproblems and their relationships (which was my main roadblock for getting to a DP solution, and likely is for others as well). Keep up the great work and I'll be sure to support you in the future!
@Reducible
@Reducible 3 роки тому
Thanks for the awesome comment and appreciate the support. I totally agree with everything you said. My main motivation was to find problems that I felt were at a level of difficulty where it requires some real problem solving beyond an example like Fibonacci which I feel is so fundamental that it's not even instructive. The best way to learn and understand DP in my experience is to actually go head first into applying the ideas of finding and solving subproblems in scenarios where the subproblems are a little less clear. And yeah about the DAG relationship, I wanted to make sure I brought that up since in a way, all dynamic programming problems are fundamentally DAG problems. This is mostly just my opinion but I don't feel like a discussion on dynamic programming is complete without mentioning the relationship with DAG's. It's just too fundamental to the core of DP.
@user-zo9ye6de5e
@user-zo9ye6de5e 2 роки тому
@@Reducible there is a problem of finding largest area in a histogram ....i did that in a white page using DAG ....it actually worked but now i got stuck at code implementation...can u plz make a video on that problem and solve it using DAG
@ratinhoembondeiro646
@ratinhoembondeiro646 6 місяців тому
​@@ReducibleTo be fair I think if you have started with Fibo example and kept the rest of the video it would have been even better. In the sense, as Fibo is a very trivial example the concept of DP would have been assimilated first in an easier way. Then you can digest easily the more difficult examples. This applies specially for those who watch you vids but are a little bit older who take time to assimilate things. Like in my case, I haven't done algorithms since uni. But still the video is still helpful and nicely done :)
@poshakj
@poshakj Рік тому
The Best part is you made us think through the process and how to break down a problem. Amazing work.
@anmolabhayjain9721
@anmolabhayjain9721 3 роки тому
I am definitely sharing this video with my friends and so should everyone else!! Thanks for the amazing tutorial.
@travelspurs
@travelspurs 2 роки тому
Let's give this guy a real appreciation for visualisation, animation and clear cut explanation. Probably the best on this topic on UKposts ❤️
@TheTessatje123
@TheTessatje123 2 роки тому
Thanks so much! I like how you 11:13 provide a visualization of the approach and 16:42 go through the implementation. I haven't seen any video describing DP like this!
@rampage14x13
@rampage14x13 3 роки тому
Thank you for all your videos! I particularly struggle with dynamic programming, and a few months ago I started solving a lot more questions, but eventually took a break when I felt I wasn’t really understanding why some of my solutions worked.. Anyway, the DAG representation is new to me, and I’m going to try out some more problems again! Always nice to get a new perspective on things
@georgy8335
@georgy8335 3 роки тому
Maan, I'd be so miserable if not for channels like these. Thank you for the hard work!
@chaitanyalal5626
@chaitanyalal5626 2 роки тому
I was looking for something like this which explains how to solve dynamic programming step by step rather than just solving questions. This video helped me in a better understanding of dynamic programming than ever before.
@hberry69
@hberry69 3 роки тому
Wish I could have found this channel earlier this semester when I started my algorithms and data structures class. This would have helped a ton.
@dnagal7816
@dnagal7816 3 роки тому
Love this video! Really easy to understand and content is professional. Looking forward to more videos from you.
@Reducible
@Reducible 3 роки тому
Thank you! ;)
@hlibprishchepov322
@hlibprishchepov322 3 роки тому
Ага даже я все понимаю)))
@tiffanyk2743
@tiffanyk2743 3 роки тому
This is probably the best video about Dynamic Programming I've seen on UKposts, it covers everything from idea to code and I usually have struggles reading the math but the animation really helped break down what's going on. Keep it up, would love to see more examples! Would you ever plan to make object oriented programming videos in the future?
@Reducible
@Reducible 3 роки тому
Hey Tiffany, thank you for the awesome comment! There are tons of dynamic programming examples so in the future I could see myself making a video on another challenging problem. For OOP, I haven't really thought about that topic -- maybe? My initial thoughts though are that there may not be too many compelling animations for OOP problems since it's more about code design. The video topics that are usually the best are ones where there is some motivating concept and overarching connection like there is with dynamic programming problems. But who knows, maybe there are some interesting problems in that area -- feel free to let me know if you think of any!
@shariharan2002
@shariharan2002 2 роки тому
@@Reducible I dont much about OOP. but i have recently come across this topic in discrete math known as Group theory. its a part of abstract algebra. There is a book known as visual group theory and professor macauley uses this in a yt playlist as a reference. Would it be possible to make a video on that??? since many people find it difficult to read that book but i am sure with your animation skills etc you can bring the entire 300 pages of content into 20 mins. The visuals and example connecting discrete math and chemistry architecture rubik s cube are already there. Some highly skilled people like you only can combine it for the audience. Hope this idea is a good enough one for you to ponder about. Thanks for your awesome video collection. I think you and the author of visual group theory book share the same objective : promote intuituivity first then rigorousness. Thanks a lot!!!!!
@ShivamJha00
@ShivamJha00 11 місяців тому
You need to watch more then
@FoxInFlame
@FoxInFlame 3 роки тому
This is such a great channel, but man, you need to invest in a better microphone...
@anirudhsilverking5761
@anirudhsilverking5761 3 роки тому
Agreed, he's literally shouting at the mic.
@Reducible
@Reducible 3 роки тому
Yeah, mistakes were made ... I honestly didn't even realize it was so bad until I got several comments about it. Sorry about that -- I overhauled my old setup and have now actually learned about how to get good audio so I'm hoping it's better in the future. My newest video has no such complaints so hopefully it's better and will continue to improve.
@FoxInFlame
@FoxInFlame 3 роки тому
@@Reducible That's alright, everyone learns as they go. Keep up your good work!
@theralf6454
@theralf6454 2 роки тому
I agree!
@123akash121
@123akash121 2 роки тому
@@Reducible i mean your content quality is great, just need a better mic
@legenarian6811
@legenarian6811 Місяць тому
This is finally making me understand DP and how to solve those problems without overcomplicating them i love how you go from explaining the idea to actually fully explaining some code and not just pseudo code
@haitu8896
@haitu8896 2 роки тому
I really like the way you explained, it's clean and clear, it's much better than any course about DP in computer science class I took. Visualization DP problem as graph and finding sub-problem are great points, I just love it.
@proloycodes
@proloycodes 2 роки тому
im deaf, and i got a hearing aid and i was told to practice hearing through my hearing aid. so i tried hearing with the closed captions on other videos in other channels and they did not make any sense to my brain. but when i tried yours, i could at least understand some of what you are saying. so thank you for giving me a start by enunciating the words properly. *hugs*
@tanmaybhagwat3650
@tanmaybhagwat3650 Рік тому
This video provides such great clarity about the steps and logic behind formulating a solution. Keep up the good work!
@dylanclements1875
@dylanclements1875 3 роки тому
Thank you for the video. Really pointed me in the right direction as to how to approach DP.
@MimiKe_
@MimiKe_ 10 місяців тому
Thank you for this video. Using a directed graph as a visual is very helpful, and I don't recall it ever coming up as a strategy in my studies.
@Blowyourspot747
@Blowyourspot747 Рік тому
Best channel I have ever seen as a dev. So amazing and soothing at explaining concepts.
@saurav0203srivastav
@saurav0203srivastav Рік тому
I literally love this video. This video is perfect. Everything about this video, the explanation, the animation everything. I cant thank you enough for this.
@prathameshsundaram7509
@prathameshsundaram7509 3 роки тому
This video is so insightful! Thanks a ton for all the effort! Looking forward to more :)
@dinkleberg794
@dinkleberg794 2 роки тому
I have never thought to visualize DP as a DAG but it makes so much sense!
@vlinkin22
@vlinkin22 9 місяців тому
This is pure gold, someone please give this guy a medal !
@taoliu6334
@taoliu6334 3 роки тому
UKposts recommended your channel to me yesterday. I wish I'd found you earlier! Great explanation and illustration!
@hassanosamakandil8004
@hassanosamakandil8004 Рік тому
I don't usually comment on videos but man this is the best explanation for a programming concept that I've ever seen on UKposts
@sumanth_
@sumanth_ 3 роки тому
You're one of the most underrated channel out there. You deserve more and more recognition. Video is great 🙌🙌 I've even recommended it to my friends
@antonkot6250
@antonkot6250 3 роки тому
One of the best I watched on this topic!
@jdhao6498
@jdhao6498 2 роки тому
I find the explanations and animations extremely clear. Thanks for making this video!
@sridharaddagatla
@sridharaddagatla 2 роки тому
I've watched one video of this channel and hit subscribed !!! What an amazing channel. Thank you so much for a clear and simple explanation.
@FrezoreR
@FrezoreR 29 днів тому
I really like the way you both explain and visualize DP. Especially the visualization part.
@ImposterBraum
@ImposterBraum 3 роки тому
This is so interesting to work through on my own, thanks for the video!
@danielvinicius4906
@danielvinicius4906 9 місяців тому
Amazing Video! Thanks for subtitles, I'm a non native and your pronunciation is perfect and some words I did not knew I could read the subtitles so I could understand your video perfectly, your way of explain things is wonderful!
@sthitaprajnapriyadarshan1740
@sthitaprajnapriyadarshan1740 Рік тому
You are an absolute genius. You are a mathematician , a scientist , an artist and a teacher
@jarmanbrar4114
@jarmanbrar4114 3 роки тому
Such a great video again. You deserve much more recognition.
@andrewtracey7016
@andrewtracey7016 2 роки тому
Great video! Very clear explanations and the visuals were so helpful.
@yemam4156
@yemam4156 4 місяці тому
I took algorithms course 2 years ago, and I didn't understand DP, and just memorized it to pass the exam. Now I understand it, thanks you bro ❤
@Renegade_rm56
@Renegade_rm56 2 роки тому
Well done, what a great video. Thank you so much for taking the effort to make this, great production.
@mostafaokasha9944
@mostafaokasha9944 2 роки тому
One of the best computer science explanations on the UKposts!!
@dorondavid4698
@dorondavid4698 2 роки тому
With your explanation, I actually find the topic interesting now as well! Great vid!
@vijay6877
@vijay6877 3 роки тому
it feels so good to like this video. Thank you so much for all the insight.
@sid6645
@sid6645 8 місяців тому
Beautiful video. Never really thought that directed graphs could be this useful in DP!
@gideonbonsu5264
@gideonbonsu5264 3 роки тому
The DAG bit is fascinating! Thank you!
@ogunitracy
@ogunitracy 2 роки тому
You sir, are a wonderful person and I want you to know that you have changed someone's life today.
@strawberriesandcream2863
@strawberriesandcream2863 Рік тому
thanks for this video!! i've really been struggling with DP while doing interview prep
@linminhtoo
@linminhtoo 2 роки тому
Great video to refresh the most reliable approach to solving DP problems! (am an engineer in AI industry). One thing to add, is that at 16:03 when checking if boxes[j] can be stacked on box, we can break the for loop once we meet the first boxes[j] that is too big, because we had sorted the list of boxes by the criteria (length). This means that the remaining boxes[j] in the list will all also be too big. This will make it a little bit more efficient :) (though it won't change the time complexity).
@SaurabhKumar-rd2ll
@SaurabhKumar-rd2ll Рік тому
What do you mean by too big. You should also consider length is sorted but not breadth. So we should check every box of Max height.
@aniketpriyadarshi2801
@aniketpriyadarshi2801 2 роки тому
Your question were so interesting. I loved those problems seriously. Thanks for this video very very much.
@damianpatel2794
@damianpatel2794 Рік тому
The code tracing for the box stacking problem was amazing!
@joerick
@joerick 2 роки тому
Nice video! Btw, to my ears it sounds like your mic is clipping. If it sounds like this, try reducing your mic gain. It will sound quieter, then you can bring the volume back using an audio effect like limiter or compression.
@kacy6014
@kacy6014 2 роки тому
Bless your heart lol was looking for someone to explain some intuition behind these magical solutions.
@user-cp3tm2nx5l
@user-cp3tm2nx5l 2 місяці тому
This video helped me code the solution in c, the code finally works and I'm so relieved. Thanks a lot, love your other videos a lot as well, first one i watched was the one about recursion and it's a gem !
@Phroggster
@Phroggster 3 роки тому
Wow! Finally a decent, informative, well-structured, and helpful recommendation from UKposts. Maybe the algorithm is actually improving, or maybe it's just getting lucky once every five years. Regardless, you've got yourself a new subscriber. Edit: wow, this was also the 5,000th video that I've liked on UKposts. I expect you'll also be getting like numbers 5,001 through ~5,020 before the end of the day.
@elvis0305
@elvis0305 2 роки тому
The explanation on the thinking process is really good !
@abyss2200
@abyss2200 3 роки тому
All your content is very nice and so helpful and the way you add the background music is a good idea 😉👍
@jaykantbhaau8618
@jaykantbhaau8618 3 роки тому
Your videos are much helpful for learning the contents. Please upload more such contents. I recommended it to my friends.
@chenvili
@chenvili 2 роки тому
Loved the video!!! It really helped me in understanding the subject.
@WizardOfArc
@WizardOfArc 3 роки тому
The DAG tip is super helpful!
@frankh1210
@frankh1210 3 роки тому
Thank you for this amazing video! Here is some Julia code that corresponds to 7:50 function lis(A) n = length(A) L = fill(1, n) for i in 1:n subproblems = [ L[k] for k in 1:i if A[k] < A[i] ] push!(subproblems, 0) L[i] = 1 + maximum(subproblems) end push!(L, 0) return maximum(L) end
@valdiviesoercos
@valdiviesoercos 3 роки тому
Awesome
@Dragoon77
@Dragoon77 3 роки тому
This is a great explanation. Thank you!
@vishalparkar
@vishalparkar 8 місяців тому
Best of explanation, visualization, succinctness with clearity and out of the crowd examples for this topic ever seen in a single video ! You got a subscriber ! BTW, which tool you use for the graphical visualization ? Do make a video on it as well ! Thanks a ton !!!
@alejandroramos9461
@alejandroramos9461 3 роки тому
You deserve wayy more subscribers. Love the content, please keep it up.
@shalakavirkar4430
@shalakavirkar4430 3 роки тому
This is a great video!! I have recommended to my friends.. nice work!!
@abhijeetbhowmik2264
@abhijeetbhowmik2264 2 роки тому
Could you please make a video for the case when 2 arrays are given. Like Longest Common Subsequence? Your videos are just amazing.
@davidm.johnston8994
@davidm.johnston8994 3 роки тому
Good video, I learned a lot, thank you for that. There are some explanations that felt a bit unclear, but maybe it's just me. I'll revisit the video later if I need to understand better.
@tuananhao2057
@tuananhao2057 2 роки тому
the best video i have seen, thank you so much. I hope you always release excellent video
@fernandoirodriguez8966
@fernandoirodriguez8966 10 місяців тому
great video you made this topic fascinating. I really enjoyed watching through it!
@Daniel-eu5ny
@Daniel-eu5ny 2 роки тому
Thank you for this video. This really helped me unterstanding dynamic programming for an exam which will be in 2 days
@mohamednawar6496
@mohamednawar6496 2 місяці тому
Amazing and intuitive explanation. Great work!
@srividyakrishnakumar6895
@srividyakrishnakumar6895 3 роки тому
I thought 3b1b started a channel for Computer Science until I heard your voice. Great content. This channel deserves so much more recognition. Thanks! Keep making more videos!! Hope you make more videos on Graph Theory, Backtracking, Recursion, and some of the interesting topics in CS.
@Reducible
@Reducible 3 роки тому
Thanks for the awesome comment. There is some really awesome CS topics that I have in the works for future videos so stay tuned!
@srividyakrishnakumar6895
@srividyakrishnakumar6895 3 роки тому
@@Reducible Cool, I had subscribed already!
@shreengul6488
@shreengul6488 2 роки тому
Oh, does it mean he is the same guy who makes 3b1b vedios?
@devdutmn9608
@devdutmn9608 6 місяців тому
​@@shreengul6488no, he assumed that this person is the person behind 3b1b because of the thumbnail of this video.
@pb-hx2hv
@pb-hx2hv 2 роки тому
Great video. Visualization as Graph is super helpful!
@sahil-nz7vk
@sahil-nz7vk 3 роки тому
Great video! Really liked the smooth animations!
@Nandaaditya92
@Nandaaditya92 3 роки тому
Amazing explanation and narration style .. keep up the great work 👍
@standupCoding
@standupCoding 2 роки тому
The best thing is that you don't mix up memoization and dynamic programming. It is really very common, not just on UKposts tutorials, but even in colleges!
@DaveYognaught62
@DaveYognaught62 Рік тому
Thank you, this video really explained what Dynamic Time Warping is actually doing
@01100010011011110110
@01100010011011110110 3 роки тому
YOU ARE A LIFE SAVIOUR!! THANK YOU
@aminemaghous
@aminemaghous 3 роки тому
Greatest explanation on how to deal with DP problems I've ever seen, The new 3Blue1Brown of algorithms. BTW do you have a profile in a competitive programming platform like codeforces?
@cat-.-
@cat-.- 3 роки тому
Wow, this video is a gemstone. I’m a CS major graduate and I still benefitted from it. The presentation is so clear I think it helped me to understand it better now than I did in college!!! Huge fan of the 3b1b visuals too. Did he help you set this up? Great job anyways!
@raynei
@raynei 3 роки тому
they use the same animation software I'm pretty sure
@johnmanardiii3308
@johnmanardiii3308 Рік тому
Its a library called manim! Its pretty easy to get started with.
@vadrif-draco
@vadrif-draco 2 роки тому
Dynamic Programming is so annoying...
@yasinghoreshi4956
@yasinghoreshi4956 3 роки тому
thank you... you are one of the best teachers in the world
@shantanunathan
@shantanunathan Рік тому
This is definitely the best explanation I've ever seen about a classic DP problem. The animations and visualations give you the extra edge for sure! Would you consider making a follow-up to this video on how to solve the LIS problem in O(nlogn) time? Personally, I find that understanding the more efficient solution is much more difficult than the O(n^2) solution in this video.
@dubvascl5840
@dubvascl5840 9 місяців тому
For O(n log n) speed you can use segment tree to find maximum value of L[i] for fitting i, though that may require compressing numbers. Let st[x] be maximum length of LIS, that ends on number x(not index) that we have already encountered. Default values are all zeroes, except st[A[0]] = 1. Then we iterate through A[i] and use segment tree to find maximum of all st[x] among x < A[i]. Then we set st[A[i]] = that_maximum + 1 and move on. To get final answer just get maximum of all st[x](it will be in the root of segment tree)
@sharbelokzan9673
@sharbelokzan9673 3 роки тому
using the animations in the right way! great explanation Thankyou
@jingyuwang3769
@jingyuwang3769 Місяць тому
Thank you very much.I love this method to explain.
@ramirolopezvazquez4636
@ramirolopezvazquez4636 3 роки тому
An absolutely wonderful video. Thanks!
@kepler_22b83
@kepler_22b83 Рік тому
Thnx... Didn't get it at first but it helped a lot once I took a breather to think... Studying more than 8h muddles the mind a little...
@kensword
@kensword 3 роки тому
Great tutorial. Thank you!
@Goldy131992
@Goldy131992 2 роки тому
Fantastic explanation, thank you so much!
@Mannershark
@Mannershark 3 роки тому
I've developed a couple dynamic programming algorithms on trees and dags. My prof called these 'local functions', as the value at a node only depends on the in-neighbours. (I haven't seen anyone else calling them that though). The interesting features of these are that the running time is easy to determine based on just the computations required at each node, that it can also be applied to undirected graphs if picking an arbitrary root is possible, and by storing the graph in topological order, it's also IO efficient.
@immagod5285
@immagod5285 Рік тому
The language of Gods
@MS-qh3iz
@MS-qh3iz Рік тому
thank you so so much, this video is absolutely a lifesaver!!!
@HeywardLiu
@HeywardLiu 3 роки тому
dude you are awesome! thanks for sharing these technique it helps me a lots!
@jaackkpott343
@jaackkpott343 2 роки тому
Great Video especially the second example.
@michaelchang7497
@michaelchang7497 Рік тому
Thank you. This video was very helpful.
@openworld7585
@openworld7585 3 роки тому
I was waiting for this amazing video. thank you very much.....
@joshelguapo5563
@joshelguapo5563 3 місяці тому
Yeah this is a masterclass in how to teach CS. Great job!
@somdebsar7378
@somdebsar7378 8 місяців тому
This same problem i applied to weighted jobs which kind of looks like same and get solved, while i was looking for this problem UKposts suggested me this 😁😁, thanks a lot 👍
@jayantverma6196
@jayantverma6196 3 роки тому
Aahhh, perfect video for quarantine.
Mastering Dynamic Programming - How to solve any interview problem (Part 1)
19:41
Bro smelt it & passed out 😂 #comedy
00:10
MrTalalaa
Переглядів 7 млн
Первая поломка Scirocco! Балацко попал на мотор.
1:13:12
How Dijkstra's Algorithm Works
8:31
Spanning Tree
Переглядів 1,2 млн
Unlocking Your Intuition: How to Solve Hard Problems Easily
17:34
Colin Galen
Переглядів 1,1 млн
5 Simple Steps for Solving Any Recursive Problem
21:03
Reducible
Переглядів 1,1 млн
Lecture 19: Dynamic Programming I: Fibonacci, Shortest Paths
51:47
MIT OpenCourseWare
Переглядів 2,8 млн
5 Problem Solving Tips for Cracking Coding Interview Questions
19:12
The 0/1 Knapsack Problem (Demystifying Dynamic Programming)
20:30
Back To Back SWE
Переглядів 199 тис.
How I Got Good at Coding Interviews
6:29
NeetCode
Переглядів 1,6 млн
Premature Optimization
12:39
CodeAesthetic
Переглядів 742 тис.
Fast Inverse Square Root - A Quake III Algorithm
20:08
Nemean
Переглядів 4,8 млн
Bro smelt it & passed out 😂 #comedy
00:10
MrTalalaa
Переглядів 7 млн