Nideesh Terapalli
Nideesh Terapalli
  • 86
  • 454 312
LRU Cache | Leetcode 146
Code:
github.com/Nideesh1/Algo/blob/master/leetcode/L_146.java
Leetcode:
leetcode.com/problems/lru-cache/
*Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below.
Credit to : leetcode.com/problems/lru-cache/solution/
Hey there! Just wanted to let you know that some of the below links in this video description are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own!
Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link)
Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)
Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)
(0:00) Outline
(0:23) I/O
(1:46) Intuition
(3:12) Diagram
(4:00) Dry Run
(4:50) Complexity
zhlédnutí: 1 781

Video

Word Ladder | Leetcode 127 | Breadth First Search
zhlédnutí 1,6KPřed 3 lety
Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_127.java BFS Layer: czcams.com/video/LiVcwM8paCA/video.html Leetcode: leetcode.com/problems/word-ladder/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Hey there! Just wanted to let you know that...
Real World System Architecture - Why Bother Learning Algorithms?
zhlédnutí 3,5KPřed 3 lety
Excerpt Uber: Uber is a ride-sharing and ride-hailing service which has some additional offerings such as food delivery and freight transportation. In most cases users interact with the service through their mobile phone applications and request a ride. They select origin and destination and can choose from a variety of offerings such as UberX, UberPool, and UberBlack etc. Most of us likely hav...
(Remade) Leetcode 198 - House Robber | Dynamic Programming
zhlédnutí 1,2KPřed 3 lety
Topic: Dynamic Programming Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_198.java Leetcode: leetcode.com/problems/house-robber/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Intro:(0:00) Input/Output:(0:11) Approach:(1:11) DAG:(2:18) Memo:(...
(Remade) Leetcode 169 - Divide And Conquer | Majority Element
zhlédnutí 11KPřed 3 lety
Topic: Divide And Conquer Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_169.java Leetcode: leetcode.com/problems/majority-element/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Leetcode Solution (leetcode.com/problems/majority-element/solut...
(Remade) Leetcode 338 - Dynamic Programming | Counting Bits
zhlédnutí 1,4KPřed 3 lety
Topic: Dynamic Programming Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_338.java Leetcode: leetcode.com/problems/counting-bits/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Leetcode Solution | leetcode.com/problems/counting-bits/solution/...
(Remade) Leetcode 111 - Min Depth Bin Tree | Binary Tree
zhlédnutí 912Před 3 lety
Topic: Binary Tree Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_111.java Leetcode: leetcode.com/problems/minimum-depth-of-binary-tree/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Leetcode Solution | leetcode.com/problems/minimum-depth-of...
(Remade) Leetcode 605 - Can Place Flowers | Array
zhlédnutí 1,4KPřed 3 lety
Topic: Array Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_605.java Leetcode: leetcode.com/problems/can-place-flowers/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Leetcode Solution | leetcode.com/problems/can-place-flowers/solution/ Intro...
(Remade) Leetcode 112 - Binary Tree | Path Sum
zhlédnutí 1KPřed 3 lety
Topic: Tree Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_112.java Leetcode: leetcode.com/problems/path-sum/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : leetcode.com/problems/path-sum/solution/ Intro:(0:00) I/O:(0:12) Diagram:(0:45) Code:...
(Remade) Leetcode 14 - Common Prefix | String
zhlédnutí 165Před 3 lety
Topic: String Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_14.java Leetcode: leetcode.com/problems/longest-common-prefix/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Into:(0:00) Input/Output:(0:14) Approach:(0:31) Code:(1:16) Complexity:...
(Remade) Leetcode 69 - Sqrt(x) | Binary Search
zhlédnutí 6KPřed 3 lety
Topic: Binary Search Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_69.java Leetcode: leetcode.com/problems/sqrtx/ www.topcoder.com/community/competitive-programming/tutorials/binary-search *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Intro...
(Remade) Leetcode 1034 - Depth First Search | Coloring Border | Connected Components of Graph
zhlédnutí 1,8KPřed 3 lety
Topic: Graph, Depth First Search, Connected Component Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_1034.java Leetcode: leetcode.com/problems/coloring-a-border/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : (Leetcode user) rock leetcode.com...
(Remade) Leetcode 413 - Dynamic Programming | Arithmetic Slices
zhlédnutí 1,9KPřed 3 lety
Topic: Dynamic Programming Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_413.java Leetcode: leetcode.com/problems/arithmetic-slices/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Leetcode Solution | leetcode.com/problems/arithmetic-slices/s...
(Remade) Maximum Sum Subarray | Kadane's Algo | Divide And Conquer | Leetcode 53
zhlédnutí 5KPřed 3 lety
Topic: Divide & Conquer Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_53.java Leetcode: leetcode.com/problems/maximum-subarray/ www.geeksforgeeks.org/maximum-subarray-sum-using-divide-and-conquer-algorithm/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below....
(Remade) Leetcode 859 -Buddy Strings | String
zhlédnutí 1,4KPřed 3 lety
Topic: String Code: github.com/Nideesh1/Algo/blob/master/leetcode/L_859.java Leetcode: leetcode.com/problems/buddy-strings/ *Note* I claim no rights to this question. All rights belong to Leetcode. If I'm reviewing a solution that was from another Leetcode user or Leetcode itself I will give credit below. Credit to : Intro:(0:00) Input/Output:(0:11) Approach:(2:22) Code:(3:00) Complexity:(4:35)...
(Remade) Leetcode 1018 - Binary Prefix Div By 5 | Array
zhlédnutí 859Před 3 lety
(Remade) Leetcode 1018 - Binary Prefix Div By 5 | Array
Sieve of Eratosthenes | Count Primes | Leetcode 204
zhlédnutí 6KPřed 3 lety
Sieve of Eratosthenes | Count Primes | Leetcode 204
(Remade) Subsets I | Leetcode 78 | Backtracking
zhlédnutí 10KPřed 4 lety
(Remade) Subsets I | Leetcode 78 | Backtracking
(Remade) Non-Decreasing Array | Leetcode 665
zhlédnutí 7KPřed 4 lety
(Remade) Non-Decreasing Array | Leetcode 665
(Remade) Longest Univalue Path | Binary Tree | Leetcode 687
zhlédnutí 5KPřed 4 lety
(Remade) Longest Univalue Path | Binary Tree | Leetcode 687
(Remade) MinCost Ticket | Dynamic Programming | Leetcode 983
zhlédnutí 7KPřed 4 lety
(Remade) MinCost Ticket | Dynamic Programming | Leetcode 983
Uncrossed Lines | Dynamic Programming | Leetcode 1035
zhlédnutí 413Před 4 lety
Uncrossed Lines | Dynamic Programming | Leetcode 1035
(Remade) Find The Town Judge | Leetcode 997
zhlédnutí 612Před 4 lety
(Remade) Find The Town Judge | Leetcode 997
(Remade) K-Diff Pairs in Array | Leetcode 532
zhlédnutí 7KPřed 4 lety
(Remade) K-Diff Pairs in Array | Leetcode 532
Maximum Card Points | Dynamic Programming, Sliding Window | Leetcode 1423
zhlédnutí 2,6KPřed 4 lety
Maximum Card Points | Dynamic Programming, Sliding Window | Leetcode 1423
Balance a BST | Leetcode 1382
zhlédnutí 6KPřed 4 lety
Balance a BST | Leetcode 1382
How to Remember Algorithms With Anki
zhlédnutí 6KPřed 4 lety
How to Remember Algorithms With Anki
(Remade) Dijkstra's Algorithm | BFS | Network Delay Time | Leetcode 743
zhlédnutí 3,3KPřed 4 lety
(Remade) Dijkstra's Algorithm | BFS | Network Delay Time | Leetcode 743
(Remade) Binary Tree Paths | Depth First Search | Leetcode 257
zhlédnutí 3,2KPřed 4 lety
(Remade) Binary Tree Paths | Depth First Search | Leetcode 257
Algorithm Visual | Breadth First Search | Rotting Oranges | Leetcode 994
zhlédnutí 790Před 4 lety
Algorithm Visual | Breadth First Search | Rotting Oranges | Leetcode 994

Komentáře

  • @tpsspace7397
    @tpsspace7397 Před 3 dny

    wow this video helped me so much, seeing it draw on a whiteboard and more in person is so much more helpful then looking at the code myself

  • @harshithalingapalem9268

    I don't understand why the edge case See I convert -2^32 to abs and store it in a long int Like long int x = labs(dividend) Continue the whole division The place where I'm storing the ans is also long So, I am not giving it a scope to overflow Yet, I don't understand why after the while loops, the ans turns out -2^32 While it has to be +2^32-- because of the usage of labs and long Why is it not working!?! In my mind it should!!

  • @DSUNDAR_
    @DSUNDAR_ Před 21 dnem

    In short, 3 cases : case1: can join existing group-> check anybody wants the current number by looking hypothetical map. case2: eligible to create a group case3: not eligible to create group as well cannot join any group. return false

  • @rajeshbammidy180
    @rajeshbammidy180 Před 22 dny

    Is that Nideesh Terapalli?

  • @shivenmehru
    @shivenmehru Před 24 dny

    Hi Nideesh, I think the second if condition where we have an opening bracket and the stack is at closing bracket is not needed as whenever we encounter a closing bracket and stack.peek is an opening bracket we're popping it off stack anyway..worked for me without it. Great vid regardless, thanks for the explanation!

  • @kunjmaheshwari9819
    @kunjmaheshwari9819 Před 29 dny

    nice explanation. Thankyou!

  • @klikz2242
    @klikz2242 Před měsícem

    You shoulder joint issues like me huh haha 0:56

  • @sambitdas6546
    @sambitdas6546 Před měsícem

    o my god ur accent

  • @sujangyawali418
    @sujangyawali418 Před 2 měsíci

    What if left part don't have majority element?

  • @sujangyawali418
    @sujangyawali418 Před 2 měsíci

    For eg: right half is 3,4. Here, 3,4 is divided till base case. Subleft 3 return 3 as max and Subright 4 return 4 as max. Since result was different. We have to run loop to check count countSublefthalf greater return subleft 3 otherwise subright 4. But one thing i didn't get is while iterating in count method we are taking range of only lefthalf instead of entire array. What we are trying to do by seeing occurence in left half array only. In this case to see occurence of 3 in count method we are iterating from 0 to 0 ???😂😂😂

  • @parthh1112
    @parthh1112 Před 3 měsíci

    accent 😂😂😂😂😂😂

  • @parthh1112
    @parthh1112 Před 3 měsíci

    class Solution { public: int findans(TreeNode *root,int pre,int &ans){ if(!root)return 0; int l = findans(root->left,root->val,ans); int r = findans(root->right,root->val,ans); ans = max(l+r,ans); if(pre == root->val){ return max(l,r) + 1; } return 0; } int longestUnivaluePath(TreeNode* root) { int ans = 0; int pre = -1002; findans(root,pre,ans); return ans; } };

  • @lakshmancme046
    @lakshmancme046 Před 3 měsíci

    Clear explanation

  • @harveycrimsond3947
    @harveycrimsond3947 Před 4 měsíci

    Expected Gowardhan when I clicked, found Gordon instead.

  • @abhishekjain383
    @abhishekjain383 Před 4 měsíci

    In your github link, you have add one condition which is not in video that is :- if(grid[i][j] > 0){ res += 2; } Could you please explain this conditon ?

  • @ajjasicka5578
    @ajjasicka5578 Před 5 měsíci

    which language it is?C++ right?

  • @kabeer09
    @kabeer09 Před 6 měsíci

    wrong approach

  • @jangorka7691
    @jangorka7691 Před 6 měsíci

    great video bro <3

  • @unanimous8510
    @unanimous8510 Před 6 měsíci

    very nice!

  • @UserUser-tn8tv
    @UserUser-tn8tv Před 7 měsíci

    Very Simpler and Understandable explanation Thank You Sir

  • @techgamer4291
    @techgamer4291 Před 7 měsíci

    Very clear and concise explanation . Thank you .

  • @bhargavsangani2901
    @bhargavsangani2901 Před 9 měsíci

    Amazing explanation

  • @abhijit-sarkar
    @abhijit-sarkar Před rokem

    It's never clear why you decided on multiplying by a magic number 2. Clearly, you crammed the solution and just let it out here instead of building it up logically. This is a shi**y problem anyway, it has nothing to do with programming.

  • @varanasibindu8987
    @varanasibindu8987 Před rokem

    ThankYou for the video, very good explanation

  • @Skarokin
    @Skarokin Před rokem

    Thank you so much for posting this. I had a hard time understanding DP until i came across this video

  • @George-ky2nv
    @George-ky2nv Před rokem

    Better than my actual university lecturers. Thank you!

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)

  • @NideeshTerapalli
    @NideeshTerapalli Před rokem

    Hey there! Just wanted to let you know that some of the links in this comment are affiliate links, which means that if you make a purchase through them, I may earn a small commission. Don't worry though, it doesn't cost you anything extra and it helps support this channel so I can continue to make more videos for you. Thank you so much for your support, and as always, all opinions are my own! Start getting great at system design: bytebytego.com?fpr=nideesh (affiliate link) Handpicked Algorithms and Data Structures for Interview To Save Time: interviewpen.com/?via=nideesh (affiliate link) Fast track to becoming a knowledgeable SWE www.educative.io/unlimited?aff=K1z6 (affiliate link)