Maximum Depth of Binary Tree - 3 Solutions - Leetcode 104 - Python

  Рет қаралды 260,245

NeetCode

NeetCode

Күн бұрын

Пікірлер: 132
@NeetCode
@NeetCode 3 жыл бұрын
🚀 neetcode.io/ - I created a FREE site to make interview prep a lot easier, hope it helps! ❤
@534A53
@534A53 2 жыл бұрын
this was really good, thanks foe showing us the different ways to solve the same problem because its like learning more than one thing at the same time (BFS, DFS, recursion, binary tree traversal, queues, stacks, etc. all in one video)
@kleadfusha8338
@kleadfusha8338 3 жыл бұрын
Your explanations have always been pretty amazing, but somehow they keep getting better and better!!
@NeetCode
@NeetCode 3 жыл бұрын
Thanks, I appreciate your kind words more than you think! 😃
@deewademai
@deewademai Жыл бұрын
The third solution should replace the order of "left" and "right" of the stack.append to become a pre-order tree traversal.
@jasonswift7468
@jasonswift7468 2 жыл бұрын
This is an extremely wonderful explanation. Keep up the hard work. Btw, it is the post-order method for drawing the third solution. The code of the third solution is a pre-order method. Anyway, It doesn't matter the result of this question. We can take either of pre-order method or the post-order method.
@KarthikChintalaOfficial
@KarthikChintalaOfficial Жыл бұрын
Hey NeetCode, In the Iterative DFS approach, within the while loop, if we append like this stack.append(node.left, depth+1); stack.append(node.right, depth+1); When we pop in the next iteration, then the right child will be popped and their children will be added right (because the right child is added last in the stack). I think the order should be reversed here so that the left children will be popped in the next iteration
@ashok2089
@ashok2089 4 ай бұрын
The results will be the same in either way.
@iknoorsingh7454
@iknoorsingh7454 3 жыл бұрын
Hi Neetcode, Great work, keep it up! In iterative dfs, I think you should append the right node first because then it should be preorder traversal. But both will work the same anyway.
@ziyuzhao2442
@ziyuzhao2442 2 ай бұрын
Yeah Thats correct
@tonyz2203
@tonyz2203 2 жыл бұрын
for the DFS iterative, why do we need to add the Null Node to the stack? We can do : if node.left: stack.append([node.left, depth+1]) if node.right: stack.append([node.right, depth+1])
@harishankar1368
@harishankar1368 2 жыл бұрын
We can also choose to not do that and still the result will be the same.
@vishnukumar4531
@vishnukumar4531 2 жыл бұрын
additional if-checks as part of the code, that is all!
@theFifthMountain123
@theFifthMountain123 8 ай бұрын
BFS is useful for Leetcode 111.Minimum Depth of Binary Tree. Once you find the first leaf node, (not cur.left and not cur.right) return 1 + depth
@OMFGallusernamesgone
@OMFGallusernamesgone 2 жыл бұрын
for BFS, couldnt we just use your iterative DFS solution, but replace the stack with a queue?
@divyashukla4321
@divyashukla4321 12 күн бұрын
Great explanation, thank you. I do have 1 doubt - shouldn't time complexity for bfs in your solution be o(n*n) as in order of n square. Because first we are using while loop, then it has inner for loop. Hence to use two loops meaning inner loop shouldn't it be time complexity be order of n square ?
@lonecreeperbrine
@lonecreeperbrine 2 жыл бұрын
IDK if this changes anything and if it doesn't can someone explain why. In the last solution when you added things to the stack you appended node.left and then node.right but for preorder traversal shouldn't have node.right been appended then node.left so when you pop the stack the left node is popped first ?
@giancarlokuosmanen9723
@giancarlokuosmanen9723 25 күн бұрын
Neetcode simplifying leetcode, cheers man!
@nikhilgoyal007
@nikhilgoyal007 Жыл бұрын
thanks! right should have been appended before the left yes ?
@syafzal273
@syafzal273 10 ай бұрын
I had only coded up the recursive way, but good to know about the other 2 ways you described in this video
@hemesh5663
@hemesh5663 2 жыл бұрын
Hey as we are following pre order , the order shd be root, left, right then as stack follow lifo shdnt we insert right first and left, this is small doubt anyway technically we will get same. sorry for asking a lame doubt please excuse me.
@michaelyao9389
@michaelyao9389 2 жыл бұрын
Somehow, I feel like the iterative dfs is not so `dfs`, it's till kind of `bfs`.
@sirmidor
@sirmidor 2 жыл бұрын
What makes it DFS is that new nodes to search are appended on the right, which is the same place where nodes are popped from. This means that deeper nodes of depth X + 1, which were found from a previous node at depth X, will always be tried before potential other nodes of depth X.
@adventurer2395
@adventurer2395 Жыл бұрын
Excellent diverse approaches! The code explanation of the last one was pretty confusing though.
@BruhhMoment-ij5uo
@BruhhMoment-ij5uo Жыл бұрын
Hey, Can you tell me why are the leaf nodes returning 1 ? I think they should return 0 because their height is 0, so the height of the tree should be 2 right? because the no. of edges will be the height right?
@marcoespinoza3327
@marcoespinoza3327 2 жыл бұрын
God bless you. I have stumbled on your channel and it has been helping me a lot with your explanations. I like how you did all three ways of doing this to help build that intuition for all of them. Thank you so much for making these videos.
@dipakkumarrai1442
@dipakkumarrai1442 2 жыл бұрын
Thank you so much for the diagrams sketch! It became clear now
@abh830
@abh830 9 ай бұрын
How do you create these videos like on iPad or on the computer as its difficult to drawing otherwise ?
@jugsma6676
@jugsma6676 7 ай бұрын
Another variant is: def solution(root): cache = {} return helper(root, cache, 1) def helper(root, cache, level): if not root: return True cache[level] = root.val # [root.val] helper(root.left, cache, level+1) helper(root.right, cache, level+1) return max(cache.keys())
@riturajsingh9744
@riturajsingh9744 2 жыл бұрын
Can you explain why we used 'self', even when we were in the same function (a reference to recursive solution line#12)
@NeetCode
@NeetCode 2 жыл бұрын
It's required in python, since the function belongs to the object (self)
@avtarchandra2407
@avtarchandra2407 2 жыл бұрын
5:11 made me laugh @neetcode...."I am showing that I am not able to solve even easy problem"
@draugno7
@draugno7 Ай бұрын
How is the first soluton's memory complexity same as the other two's when we don't use additional data structure (deque or stack)?
@raviyadav2552
@raviyadav2552 2 жыл бұрын
thnx for showing the different approaches
@grigorypiskunov418
@grigorypiskunov418 7 ай бұрын
Thank you Sir for your work, hardly appreciate that. I actually have a question about the 2nd implementation. If we user pop instead of popleft or use stack as list of values we have an issue for asymmetric trees. In this case we always have +1 vaules of levels. I have checked it with debugger and I don't understand yet why in case we append to the list it add instead of list to the upper Tree element a new one..
@suri4Musiq
@suri4Musiq 6 ай бұрын
Do we really need the for loop inside the iterative bfs algorithm? Esp when this is a binary tree?
@kirillzlobin7135
@kirillzlobin7135 Жыл бұрын
Wooow... almost one line solution ))) You are amazing!!!
@knockknockyoo5812
@knockknockyoo5812 2 жыл бұрын
I've watched his videos for a while. This is one of the best lectures. Thank you so much.
@suri4Musiq
@suri4Musiq 4 ай бұрын
10:53 Isn't the recurisve DFS a post-order traversal? We first do left, then right and then the current node right? Atleast that's how your code looked in the first solution
@haha-hs7yf
@haha-hs7yf Ай бұрын
What's the diffference between bfs and iterative dfs?
@alexandersiewert9133
@alexandersiewert9133 Жыл бұрын
I’m a bit confused on the DSF on why it would be max(result, depth) wouldn’t depth be good enough?
@RC-qr8bn
@RC-qr8bn 2 жыл бұрын
On the Iterative DFS explanation if its using preorder wouldn't 9 on the left subtree be added first to the stack and then 20? It looks like 20 was added first and then 9.
@timswen5280
@timswen5280 Жыл бұрын
I have the same question
@TharaMesseroux1
@TharaMesseroux1 3 жыл бұрын
Thank you NeetCode for this series!
@SARDARIN
@SARDARIN 3 жыл бұрын
@ 11:25 you said in pre order traversal, we visit left tree first. That's not pre order, In preorder we visit the root node first, then the left and right trees.
@Shivi1003
@Shivi1003 2 жыл бұрын
Your videos are really very informative and helps a lot while solving questions .💙💙
@BruhhMoment-ij5uo
@BruhhMoment-ij5uo Жыл бұрын
Hey, Can you tell me why are the leaf nodes returning 1 ? I think they should return 0 because their height is 0, so the height should be 2 right?
@EdenObengNanaKyei
@EdenObengNanaKyei 5 ай бұрын
In a binary tree, the node value on the right should always be greater than the node values on its left, and also the parent node. Does this make the example given by leetcode wrong?
@srisai-j4k
@srisai-j4k Жыл бұрын
The explanation is very good. Please let me know where I can get this code. Please share the link
@JSarko_
@JSarko_ 2 жыл бұрын
Looking at the recursive dfs solution, how does traversing through each node return the value of 1 just by calling the function? so for example in the return line at 5:10, how does self.maxDepth(node.left) generate a value to be compared with in the max function? I don't see how it gets incremented with every function call? Just like to add the explanation of the algorithm is great, its just from a coding standpoint I don't understand because self.maxDepth(node.left) by itself returns 0
@jesalgandhi
@jesalgandhi 2 жыл бұрын
I am also confused about this, if anyone can provide a clear explanation of how a node generates a return value when recursing that would be very helpful
@natnaelberhane3141
@natnaelberhane3141 2 жыл бұрын
That's because we're adding 1 for each level. So for example, in the recursion, if the tree is empty, we return 0. That would terminate our code and return 0. But if our tree has at least a root, then the depth becomes 1. so we add that value for each level we encounter. that's why the recursive code is return 1 + max(maxDepth(root.left), maxDepth(root.right). So this means, as we go deeper into the tree, we keep adding 1 for each root or level. But once we reach the leaf nodes, the root.left and root.right of the leaf node would return 0. For example, if we have a tree with 3 levels, a b c d e our function call would be 1 + max(maxDepth(b), maxDepth(c)). maxDepth(b) would be 1 + maxDepth(d) maxDepth of d would be 1 + max(maxDepth(d.left, d.right)) both d.left and d.right are none (we hit our base case). Therefore they both return 0. This means maxDepth(d) would be 1 + 0 maxDepth(b) == 1 + maxDepth(d) which is 1 + 1 maxDepth(a) would be 1 + maxDepth(b) which is 1 + 1 + 1 So the function will finally return 3. Btw since the tree is symmetrical, I only took the a->b->d part of the tree for this explanation.
@namoan1216
@namoan1216 2 жыл бұрын
At first it is confusing for me but then I realized and your ideas are really effective
@darrylbrian
@darrylbrian 2 жыл бұрын
@neetcode - heads up, the link to this video on your website actually takes you to the comments page instead of the video itself.
@taran7649
@taran7649 2 жыл бұрын
The BFS and DFS are both iterative right
@RandomShowerThoughts
@RandomShowerThoughts 2 жыл бұрын
you might be the best at explaining these types of problems, and the theory behind them, wow
@peanutbutter785
@peanutbutter785 2 жыл бұрын
Such a clear explanation! Thank you :)
@RC-qr8bn
@RC-qr8bn 2 жыл бұрын
Do you think if I solved this question in a real interview with just recursive DFS would that be enough or should I also learn the iterative way to solve it too just in case.
@legatusmaximus6275
@legatusmaximus6275 2 жыл бұрын
Know iterative and recursive solution
@RC-qr8bn
@RC-qr8bn 2 жыл бұрын
@@legatusmaximus6275 Thanks
@alexkim8965
@alexkim8965 2 жыл бұрын
Why is the last solution DFS Preorder? Shouldn't it be considered as Level Order (BFS)? It goes through nodes by each level (visit/process siblings first) before visiting its child. I understand people normally say Queue is BFS and Stack is DFS, but I don't understand this concept. They both look BFS to me whether they use queue or stack, because you visit the nodes from top to bottom, visit/process siblings first before visiting/processing its own child. It's a question I had for some time, hope someone can answer 😛
@PrecisionWrittens
@PrecisionWrittens Жыл бұрын
That is only because the example tree doesn’t have much of a left side so the traversal gives the illusion of being BFS. However, say node 9 had children 4 and 8. Then we’d visit both 4 and 8 before 20 instead of going right from node 9 to 20. So it’s really just a crappy tree to use as an example bc it doesn’t differentiate BFS and DFS
@abrarmahi
@abrarmahi 9 ай бұрын
Great video as always
@nilshr2
@nilshr2 3 жыл бұрын
love you bro for great logical solutions
@АнастасияМохор
@АнастасияМохор 10 ай бұрын
Thank you very much for your videos!
@tanoybhowmick8715
@tanoybhowmick8715 2 жыл бұрын
Thanks for the explanation.
@Emorinken
@Emorinken 2 ай бұрын
Thanks man, I appreciate
@iancampbell8420
@iancampbell8420 3 ай бұрын
3:40 “the max is clearly 2” idk man 1 seems pretty big
@Ivan_lulz
@Ivan_lulz 7 ай бұрын
range(len(q)) bothered me a lot until I looked up that it was only evaluated at the start of the for loop.
@khangton4382
@khangton4382 2 жыл бұрын
For this particular problem using DFS, why did we opt to use the max keyword? I don't understand the reasoning behind this.
@sf-spark129
@sf-spark129 2 жыл бұрын
It is always better to actually write down the recursive calls' results step by step. Then, you will see why you need max() in the return statement. It took me about 10 problems of Binary Tree until I see that naturally. To answer your question, DFS goes deeper and deeper(lower and lower) of the tree recursively until it reaches a leaf node(base case: root = None). From there, it starts building up like climbing up a tree. Let's say you have climbed a good amount on the left side of the tree and also a good amount on the right side. You really can't tell which side you climbed more. Then, max(left, right) will give you the higher side's height(depth) instantly. When you go one step higher, which (let's assume) is the root, then you will get the maximum height(depth) of the tree by 1 + max(left, right). Code I use to understand below: def maxDepth_DFS(self, root: Optional[TreeNode]) -> int: if not root: return 0 leftNode = self.maxDepth(root.left) rightNode = self.maxDepth(root.right) return max(leftNode, rightNode) + 1
@sergii.golota
@sergii.golota 2 жыл бұрын
I'm wondering how to transform list to a tree object? Is there a python code to do that?
@YT.Nikolay
@YT.Nikolay 2 жыл бұрын
check out this problem -> leetcode.com/problems/convert-sorted-array-to-binary-search-tree/
@josephavila3539
@josephavila3539 2 жыл бұрын
Hello, thank you so much for your amazing content, I am devouring your insights and its helping me grow while gaining confidence. My question, for DFS and BFS, should it be ROOT in the answers opposed to NODE? Thank you.
@QVL75
@QVL75 2 жыл бұрын
Excellent explanation!
@juanmacias5922
@juanmacias5922 Жыл бұрын
I usually don't like recursion, but it was the simplest one. xD
@sachitrao771
@sachitrao771 2 жыл бұрын
good work sir
@avtarchandra2407
@avtarchandra2407 2 жыл бұрын
thankyou bro for adding the C++ codes on your website i do use fully your website .....and love you so much from India
@NeetCode
@NeetCode 2 жыл бұрын
No problem, glad it's helpful!
@amberchen5804
@amberchen5804 Жыл бұрын
Thank you for the awesome explanation. Where can I find the excel sheet at the beginning of your video? I liked the short solution hint
@Sheik1388
@Sheik1388 2 жыл бұрын
Can anyone please explain the syntax? I'm very new to OOP with Python, and I don't understand how we actually get the entire list of nodes (for instance "Input: root = [3,9,20,null,null,15,7]") through the treeNode class object which is not even a list...".
@oliverheber599
@oliverheber599 2 жыл бұрын
Its misleading, root is actually just 3 in that example, they shouldn't call the list root, the list is the entire tree, but only the root (3, with it's left and right (9,20) filled ) will be passed into the maxDepth function
@sf-spark129
@sf-spark129 2 жыл бұрын
For the BSF approach, you don't need base case if you code like this: Instead of using "if not root: return 0", q = deque([root]) if root else None will do just fine. This is more NeetCode-ish style of code I figured. Yes, you like to keep your code succinct although that can be sometimes difficult to follow. :) Code below: def maxDepth_BFS(self, root) -> int: q = deque([root]) if root else None level = 0 while q: for i in q: node = q.pop() if node.left: q.appendleft(node.left) if node.right: q.appendleft(node.right) level += 1 return level
@samlinus836
@samlinus836 Жыл бұрын
Simply awesome
@anmolacharya309
@anmolacharya309 3 ай бұрын
Can someone recommend me some visaulization platforms to see how the code and logic works together? For example, the recursive calls. I am not 100% with recursion so wanted to see it
@manuchehrqoriev
@manuchehrqoriev Жыл бұрын
Thank you so much.
@vatsalsharma5791
@vatsalsharma5791 3 жыл бұрын
Awesome explanation ❤️ Can you plz make a video on N Queens problem?
@priceton_braswell
@priceton_braswell 2 жыл бұрын
hate to sound stupid but confused on this one. ive been understanding recursion pretty well but this problem says the input is a root node, but it looks like the input isn't just one node but multiple items in an array. so is the whole array being input as root or just the first one. if its the whole array. would if not root always be true and always return 0. please hellp
@staceyonuora5329
@staceyonuora5329 2 жыл бұрын
The input is the root node but the root node is an object of the class Tree node (the class is defined in comments in the video above the solution class ) which has 3 properties the value, the left node and the right node. You can access all the nodes of the tree just from the root node. I hope I was able to help
@gottuparthiharichandana3381
@gottuparthiharichandana3381 Жыл бұрын
isn't the maximum depth same as the height of the tree?
@Thejohnster1012
@Thejohnster1012 Жыл бұрын
final bit of code doesn't match up to drawing as it actually pops the right node first? correct me if wrong
@dumbfailurekms
@dumbfailurekms Жыл бұрын
you are correct. both work, but swap the order of how its pushed to stack to get pre order (NLR) This is technically an alternative pre order of NRL
@dipakkumarrai1442
@dipakkumarrai1442 2 жыл бұрын
Is there an equivalent Java version of implementing Max Depth of a tree using DFS/stack?
@runeyman
@runeyman 2 жыл бұрын
public int maxDepth(TreeNode root) { Stack stack = new Stack(); stack.add(new Pair(root, 1)); int depth = 0; while(!stack.isEmpty()){ Pair temp = stack.pop(); if(temp.treeNode != null){ depth = Math.max(temp.integer,depth); stack.add(new Pair(temp.treeNode.left, temp.integer + 1)); stack.add(new Pair(temp.treeNode.right, temp.integer + 1)); } } return depth; } public class Pair{ TreeNode treeNode; int integer; public Pair(TreeNode treeNode, int integer){ this.treeNode = treeNode; this.integer = integer; } }
@aishwaryaranghar3385
@aishwaryaranghar3385 3 жыл бұрын
I loved this. Thanks sooo much.
@fakeasfluff6842
@fakeasfluff6842 2 жыл бұрын
A stack in python can hold 2 elements?
@milktea2755
@milktea2755 2 жыл бұрын
I believe the stack in Python is simply a list, and a list can hold individual elements, as well as tuples that hold two elements. This stack just holds a tuple of [node, depth] per node!
@verayan2019
@verayan2019 2 жыл бұрын
could anyone explain why res = [0] instead of res = 0?
@kedarnadh
@kedarnadh 3 жыл бұрын
How stack bottom becomes stack top in 3rd approach. pls explain
@ua9091
@ua9091 3 жыл бұрын
Generally stack should start from bottom, but while explaining he started putting items at the top (like a table) which is actually the bottom of the stack.
@thefuture5162
@thefuture5162 7 ай бұрын
0:36 😂 You are very funny brother
@LongVu-sm8wm
@LongVu-sm8wm 2 жыл бұрын
great, this is helpful.
@indhumathi5846
@indhumathi5846 Жыл бұрын
understood
@ajayvishwanath1052
@ajayvishwanath1052 2 жыл бұрын
Thanks!
@NeetCode
@NeetCode 2 жыл бұрын
Thank you so much Ajay!!
@choliu1918
@choliu1918 2 жыл бұрын
For some reason your BFS solition won’t pass this case on Leetcode today. [3,9,20,null,null,15,7]
@MahdiHijazi
@MahdiHijazi 2 жыл бұрын
The solution has a mistake, level should start from zero
@hwang1607
@hwang1607 Жыл бұрын
you are smart
@rajivsarkar277
@rajivsarkar277 3 жыл бұрын
Hi @NeetCode i am unable to grab the recursive and backtracking concept clearly.I have gone through all the videos but still unable to think about a solution using recusrsion and backtrack. will be of great help if u can guide me on the same
@naveenprasanthsa3749
@naveenprasanthsa3749 3 жыл бұрын
He is not alive
@nero9985
@nero9985 2 жыл бұрын
@@naveenprasanthsa3749 Yes he is lol
@director8656
@director8656 3 жыл бұрын
Do I even have to say anything, good video!
@abhijitpai6085
@abhijitpai6085 2 жыл бұрын
I lost it at 00:35
@arnoldwolfstein
@arnoldwolfstein 9 ай бұрын
in python we don't use camel case. it's snake case.
@arnoldwolfstein
@arnoldwolfstein 9 ай бұрын
for i range(len(q)). oh my
@arnoldwolfstein
@arnoldwolfstein 9 ай бұрын
buy thanks for the content
@jonaskhanwald566
@jonaskhanwald566 3 жыл бұрын
lol. Breadth first search and depth first search are literally tongue twisters. Better say bfs and dfs.
@day35ofdebuggingthesamelin56
@day35ofdebuggingthesamelin56 2 жыл бұрын
what do you mean? It's just depfarstsaerch and breithfasbtshsearsch.
@sf-spark129
@sf-spark129 2 жыл бұрын
don't forget 'f' in between like me...😂 imagine saying BS in the intervew
@thelonerat9557
@thelonerat9557 2 жыл бұрын
5:07 I died
@Dobby_zuul
@Dobby_zuul 5 ай бұрын
fyi, depth does NOT include the root (height of a tree does), the LeetCode description is wrong, root node is always at max depth 0.
@amitjoshi7309
@amitjoshi7309 7 ай бұрын
I am not good with Recursion and tree thats why I cant even solve the simplest one liner solution...............
@abh830
@abh830 9 ай бұрын
create
@dipanshusingh
@dipanshusingh Жыл бұрын
@jmbrjmbr2397
@jmbrjmbr2397 8 ай бұрын
I have a crush on you Neet..
@vs3.14
@vs3.14 Жыл бұрын
I did catch the node --> root. But ... here's what my aMaZiNg code resulted in - AttributeError: 'Solution' object has no attribute 'maxDeapth'. Did you mean: 'maxDepth'? **cries in the corner**
@mjr6999
@mjr6999 2 жыл бұрын
Iterative Depfasajsdkdnf lol😂😂🙏🏻
@bag_of_pixels
@bag_of_pixels 2 ай бұрын
bfs iterative solution is soo ugly, it's basically: while q: while q: curr = q.popleft()
@1LineCode
@1LineCode 22 күн бұрын
have a better explanation to leetcode-104 ((kzbin.info/www/bejne/o6OTg2xqbdqJeM0si=JuyxtZb0K1-j0UeG )), let me know if it helped
@nginxgaming2778
@nginxgaming2778 19 күн бұрын
please speak slow you speak very fast I can't understand properly
@szu-minyu3415
@szu-minyu3415 8 ай бұрын
Thank you for the clear explanation! You are wonderful :)
@mantrax314
@mantrax314 4 ай бұрын
Thanks!
Binary Tree Maximum Path Sum - DFS - Leetcode 124 - Python
15:19
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 6 МЛН
Миллионер | 3 - серия
36:09
Million Show
Рет қаралды 2 МЛН
What type of pedestrian are you?😄 #tiktok #elsarca
00:28
Elsa Arca
Рет қаралды 32 МЛН
How I would learn Leetcode if I could start over
18:03
NeetCodeIO
Рет қаралды 687 М.
Diameter of Binary Tree - Leetcode 543 - Trees (Python)
11:16
LeetCode was HARD until I Learned these 15 Patterns
13:00
Ashish Pratap Singh
Рет қаралды 577 М.
Coin Change - Dynamic Programming Bottom Up - Leetcode 322
19:23
Implement Trie (Prefix Tree) - Leetcode 208
18:56
NeetCode
Рет қаралды 212 М.
Minimum Height Trees - Leetcode 310 - Python
23:30
NeetCodeIO
Рет қаралды 21 М.
Dynamic Programming isn't too hard. You just don't know what it is.
22:31
DecodingIntuition
Рет қаралды 197 М.
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 6 МЛН