
7.24 GB | 29min 0s | mp4 | 1426X720 | 1.981:1
Genre:eLearning |Language:English
Files Included :
001 How to get started with Leetcode.mp4 (21.79 MB)
002 How to improve problem-solving skills.mp4 (27.48 MB)
003 How To Code Fast in an interview!.mp4 (12.46 MB)
004 How to ace your DSA Interview.mp4 (10.95 MB)
001 Introduction to Time & Space Complexity.mp4 (13.04 MB)
002 What is Big O Notation.mp4 (16.89 MB)
003 Calculating Time Complexity Example 1.mp4 (19.91 MB)
004 Checking If Big O Notation Is Acceptable in Interviews.mp4 (21.16 MB)
005 Calculating Time Complexity Example 2.mp4 (15.64 MB)
006 Myth About Time Complexity.mp4 (5.42 MB)
007 Calculating Time Complexity of Recursive Cases.mp4 (11.69 MB)
008 Recursive Time Complexity Example 2.mp4 (26.46 MB)
009 Time Complexity Live Demonstration.mp4 (8.33 MB)
010 Introduction To Space Complexity.mp4 (10.78 MB)
011 Calculating Space Complexity.mp4 (16.12 MB)
012 Recursive Space Complexity Example 1.mp4 (12.11 MB)
013 Recursive Space Complexity Example 2.mp4 (6.67 MB)
001 What are arrays and why are they so fast!.mp4 (16.74 MB)
002 Drawbacks of using Arrays.mp4 (15.26 MB)
003 How do resizable arrays work.mp4 (14.95 MB)
004 Important Array Methods In Java Part 1.mp4 (11.02 MB)
005 Important Array Methods In Java Part 2.mp4 (20.08 MB)
006 Important Array Methods In Java Part 3.mp4 (31.48 MB)
007 Practice Problem 1 - Maximum Sum Subarray.mp4 (24.32 MB)
008 Practice Problem 2 - Best Time To Buy And Sell A Stock.mp4 (18.02 MB)
009 Practice Problem 3 - Maximum Product Subarray.mp4 (37.25 MB)
010 Practice Problem 4 - Product Of Array Except Self.mp4 (16.76 MB)
011 Practice Problem 5 - Rotate Array.mp4 (36.77 MB)
012 Practice Problem 6 - Max Consecutive Ones.mp4 (16.84 MB)
013 Practice Problem 7 - Valid Sudoku.mp4 (46.73 MB)
014 Practice Problem 8 - K Closest Points To Origin.mp4 (14.95 MB)
015 Practice Problem 9 - Encode and Decode Strings.mp4 (31.42 MB)
001 Why is sorting important.mp4 (12.99 MB)
002 Introduction To Sorting.mp4 (13.99 MB)
003 Bubble Sort Theory.mp4 (22.72 MB)
004 Bubble Sort Implementation.mp4 (19.35 MB)
005 Selection Sort Theory.mp4 (16.51 MB)
006 Selection Sort Implementation.mp4 (19.43 MB)
007 Insertion Sort Theory.mp4 (23.67 MB)
008 Merge Sort Part 1 - How to merge two sorted arrays.mp4 (33.33 MB)
009 Merge Sort Part 2 - Merging Two Sorted Arrays Implementation.mp4 (22.12 MB)
010 Merge Sort Part 3 - Theory.mp4 (24.31 MB)
011 Merge Sort Implementation.mp4 (27.11 MB)
012 Quick Sort Part 1 - Partitioning Algorithm.mp4 (31.97 MB)
013 Quick Sort Part 2 - Understanding how quick sort works.mp4 (13.92 MB)
014 Counting Sort Part 1 - Theory.mp4 (51.13 MB)
015 Counting Sort - Implementation.mp4 (54.29 MB)
016 How is counting sort made stable.mp4 (8.75 MB)
017 Radix Sort - Theory.mp4 (10.78 MB)
018 Radix Sort - Implementation.mp4 (24.06 MB)
019 Leetcode 283 - Move Zeroes - Java.mp4 (11.76 MB)
020 Leetcode 75 - Sort Colors - Java.mp4 (28.16 MB)
021 Leetcode 169 - Majority Element - Java.mp4 (32.23 MB)
001 Drawback Of Arrays.mp4 (8.09 MB)
002 What Is Linked List.mp4 (19.76 MB)
003 Implementing Linked Lists.mp4 (9.56 MB)
004 Iterating Over Linked Lists.mp4 (9.34 MB)
005 Inserting In Linked List.mp4 (15.27 MB)
006 Deleting From Front In Linked List.mp4 (8.49 MB)
007 What Is Doubly Linked List.mp4 (4.39 MB)
008 Linked List Class In Java.mp4 (13.35 MB)
009 Creating Linked Lists.mp4 (2.21 MB)
010 Using Iterators To Iterate.mp4 (6.28 MB)
011 Contains.mp4 (2.07 MB)
012 Iterating In Reverse Order.mp4 (2.99 MB)
013 Add Methods In Linked List.mp4 (9.45 MB)
014 Removal Methods In Linked Lists.mp4 (9.2 MB)
015 Practice Problem 1 - Intersection Of Two Linked Lists.mp4 (65.21 MB)
016 Practice Problem 2 - Merge Two Sorted Lists.mp4 (34.65 MB)
017 Practice Problem 3 - Linked List Cycle.mp4 (21.05 MB)
018 Practice Problem 4 - Reverse Linked List.mp4 (28.96 MB)
019 Practice Problem 5 - Palindrome Linked List.mp4 (89.21 MB)
020 Practice Problem 6 - Linked List Cycle II.mp4 (21.48 MB)
021 Practice Problem 7 - Find Middle Of The Linked List.mp4 (17.26 MB)
022 Practice Problem 8 - Remove Nth Node From End Of List.mp4 (28.38 MB)
023 Practice Problem 9 - Add Two Numbers.mp4 (36.03 MB)
024 Practice Problem 10 - Reorder List.mp4 (19.25 MB)
001 What Is Hash Table.mp4 (13.97 MB)
002 How does a hash table work.mp4 (18.43 MB)
003 Hash Table Collision Resolution.mp4 (19.81 MB)
004 Types Of Hash Table.mp4 (18.97 MB)
005 Hash Table Usage.mp4 (28.42 MB)
006 Practice Problem 1 - Contains Duplicate.mp4 (5.08 MB)
007 Practice Problem 2 - Two Sum.mp4 (21.98 MB)
008 Practice Problem 3 - Valid Anagram.mp4 (6.36 MB)
009 Practice Problem 4 - Group Anagrams.mp4 (26.81 MB)
010 Practice Problem 5 - Longest Consecutive Sequence.mp4 (66.21 MB)
011 Practice Problem 6 - Three Sum.mp4 (47.92 MB)
012 Practice Problem 7 - First Missing Positive.mp4 (45.84 MB)
001 Introduction to Stacks.mp4 (18.11 MB)
002 Using Stacks In Java.mp4 (9.46 MB)
003 Practice Problem 1 - Valid Parenthesis.mp4 (27.85 MB)
004 Practice Problem 2 - Min Stack.mp4 (33.58 MB)
005 Practice Problem 3 - Next Greater Element II.mp4 (58.56 MB)
006 Practice Problem 4 - Evaluate Reverse Polish Notation.mp4 (26.43 MB)
001 Introduction to Queue.mp4 (8.01 MB)
002 How Is Queue Implemented.mp4 (20.89 MB)
003 Using Queue In Java.mp4 (13.8 MB)
001 What is Sliding Window Method - Part 1.mp4 (14.04 MB)
002 What is Sliding Window Method - Part 2.mp4 (16.69 MB)
003 How to Implement Sliding Window Method Problems Quickly.mp4 (11.28 MB)
004 Practice Problem 1 - Longest Substring Without Repeating Characters.mp4 (33.07 MB)
005 Practice Problem 2 - Longest Repeating Character Replacement.mp4 (22.04 MB)
006 Practice Problem 3 - Sliding Window Maximum - Java.mp4 (48.49 MB)
001 Practice Problem 1 - Container With Most Water - Java.mp4 (23.68 MB)
002 Practice Problem 2 - Trapping Rain Water - Java.mp4 (27.67 MB)
003 Practice Problem 3 - Two Sum II - Input Array Is Sorted - Java.mp4 (22.12 MB)
004 Practice Problem 4 - Valid Palindrome - Java.mp4 (13.08 MB)
001 Practice Problem 1 - Set Matrix Zero.mp4 (61.69 MB)
002 Practice Problem 2 - Rotate Image.mp4 (22.3 MB)
003 Practice Problem 3 - Spiral Matrix.mp4 (26.6 MB)
004 Practice Problem 4 - Pow (X, N).mp4 (18.43 MB)
001 Practice Problem 1 - Insert Interval.mp4 (23.76 MB)
002 Practice Problem 2 - Search Insert Position.mp4 (27.12 MB)
003 Practice Problem 3 - Merge Intervals.mp4 (31.96 MB)
004 Practice Problem 4 - Meeting Rooms.mp4 (12.49 MB)
005 Practice Problem 5 - Non Overlapping Intervals.mp4 (15.9 MB)
001 Introduction To Binary Search.mp4 (37.29 MB)
002 Binary Search Implementation.mp4 (10.93 MB)
003 Binary Search Complexity.mp4 (17.1 MB)
001 Practice Problem 1 - Find First And Last Position Of Element In Sorted Array.mp4 (24.41 MB)
002 Practice Problem 2 - Find Minimum In A Rotated Sorted Array.mp4 (32.97 MB)
003 Practice Problem 3 - Search In A Rotated Sorted Array.mp4 (50.01 MB)
001 Practice Problem 1 - Koko Eating Bananas.mp4 (37 MB)
002 Practice Problem 2 - Magnetic Force Between Two Balls.mp4 (51.93 MB)
001 What is backtracking and how it is implemented.mp4 (40.66 MB)
002 Backtracking Example 1 With Detailed Implementation.mp4 (23.79 MB)
003 Leetcode 78 - Subsets - Java.mp4 (34.51 MB)
004 Leetcode 46 - Permutations - Java.mp4 (18.29 MB)
005 Leetcode 17 - Letter Combinations Of A Phone Number.mp4 (26.45 MB)
006 Leetcode 39 - Combination Sum - Java.mp4 (36.43 MB)
007 Leetcode 40 - Combination Sum II.mp4 (29.88 MB)
008 Leetcode 90 - Subsets II - Java.mp4 (33.26 MB)
009 Leetcode 51 - N Queens - Java.mp4 (37.78 MB)
010 Leetcode 79 - Word Search.mp4 (32.48 MB)
011 Leetcode 212 - Word Search II.mp4 (31.85 MB)
001 Introduction to Binary Trees.mp4 (27.39 MB)
002 Terms Related To Trees.mp4 (22.3 MB)
003 Tree Traversal Algorithms.mp4 (28.19 MB)
004 Level Order Traversal.mp4 (9.01 MB)
005 Implementing Trees Using References.mp4 (38.14 MB)
006 Implementing Trees Using Arrays.mp4 (31.91 MB)
001 Leetcode 100 - Same Tree - Java.mp4 (14.63 MB)
002 Leetcode 572 - Subtree Of Another Tree - Java.mp4 (30.17 MB)
003 Leetcode 101 - Symmetric Tree - Java.mp4 (24.55 MB)
004 Leetcode 104 - Maximum Depth Of A Binary Tree - Java.mp4 (16.87 MB)
005 PreOrder Traversal Implementation in Trees Using Arrays.mp4 (19.39 MB)
006 Leetcode 226 - Invert Binary Tree - Java.mp4 (17.04 MB)
007 Leetcode 543 - Diameter Of A Binary Tree - Java.mp4 (43.04 MB)
008 Leetcode 94 - Binary Tree InOrder Traversal - Java.mp4 (5.89 MB)
009 Leetcode 102 - Binary Tree Level Order Traversal - Java.mp4 (23.64 MB)
010 Leetcode 112 - Path Sum - Java.mp4 (31.74 MB)
011 Leetcode 113 - Path Sum II - Java.mp4 (54.02 MB)
012 Leetcode 993 - Cousins in Binary Tree - Java.mp4 (27.44 MB)
013 Leetcode 1161 - Maximum Level Sum of Binary Tree - Java.mp4 (31.67 MB)
014 Leetcode 105 - Construct Binary Tree From Preorder and Inorder Traversal - Java.mp4 (32.72 MB)
015 Leetcode 110 - Balanced Binary Tree - Java.mp4 (19.33 MB)
016 Leetcode 199 - Binary Tree Right Side View - Java.mp4 (16.56 MB)
017 Leetcode 1448 - Count Good Nodes In Binary Tree - Java.mp4 (24.82 MB)
018 Leetcode 404 - Sum Of Left Leaves - Java.mp4 (15.1 MB)
019 Leetcode 124 - Binary Tree Maximum Path Sum - Java.mp4 (34.35 MB)
020 Leetcode 208 - Implement Trie (Prefix Sum Tree) - Java.mp4 (42.08 MB)
021 Leetcode 211 - Design Add and Search Word Data Structure - Java.mp4 (27.04 MB)
022 Leetcode 297 - Serialize and Deserialize Binary Tree - Java.mp4 (23.04 MB)
001 Introduction To Binary Search Trees.mp4 (18.35 MB)
002 Height Balanced BST.mp4 (2.8 MB)
003 Inserting A New Node in Binary Search Tree.mp4 (8.06 MB)
004 Inorder Successor And Predecessor.mp4 (5.57 MB)
005 Deleting A Node In Binary Search Tree.mp4 (16.67 MB)
006 Leetcode 230 - Kth Smallest Element In BST - Java.mp4 (15.24 MB)
007 Leetcode 98 - Validate Binary Search Tree - Java.mp4 (24.39 MB)
008 Leetcode 235 - Lowest Common Ancestor Of A Binary Search Tree - Java.mp4 (26.48 MB)
001 Introduction To Heaps.mp4 (30.61 MB)
002 Implementation Of Heaps.mp4 (28.8 MB)
003 Insertion in Heaps.mp4 (18.82 MB)
004 Heap Insertion Implementation.mp4 (43.85 MB)
005 Deletion in Heaps.mp4 (18.51 MB)
006 Heapify.mp4 (20.45 MB)
007 Practice Problem 1 - Kth Largest Element In An Array.mp4 (24.32 MB)
008 Practice Problem 2 - Find Median from Data Stream.mp4 (42.3 MB)
009 Practice Problem 3 - Kth Largest Element In A Stream.mp4 (30.63 MB)
010 Leetcode 1046 - Last Stone Weight - Java.mp4 (14.93 MB)
011 Leetcode 23 - Merge K Sorted Lists.mp4 (19.16 MB)
012 Leetcode 253 - Meeting Rooms II.mp4 (25.83 MB)
013 Leetcode 347 - Top K Frequent Elements.mp4 (25.06 MB)
001 Introduction to Dynamic Programming.mp4 (38.43 MB)
002 Practice Problem 1 - Climbing Stairs - Java.mp4 (16.32 MB)
003 Practice Problem 2 - Jump Game - Java.mp4 (30.78 MB)
004 Practice Problem 3 - Coin Change.mp4 (52.02 MB)
005 Practice Problem 4 - Target Sum.mp4 (39.08 MB)
006 Practice Problem 5 - Longest Common Subsequence.mp4 (40 MB)
007 Practice Problem 6 - House Robber.mp4 (25.79 MB)
008 Practice Problem 7 - Longest Increasing Subsequence.mp4 (34.22 MB)
009 Practice Problem 8 - Partition Equal Subset Sum.mp4 (48.93 MB)
010 Practice Problem 10 - Integer Replacement.mp4 (36.46 MB)
011 Practice Problem 11 - Decode Ways.mp4 (68.73 MB)
012 Practice Problem 12 - House Robber II.mp4 (39.46 MB)
013 Practice Problem 13 - Min Cost Climbing Stairs.mp4 (40.46 MB)
014 Practice Problem 14 - Longest Palindromic Substring.mp4 (49.8 MB)
015 Practice Problem 15 - Word Break.mp4 (31.9 MB)
016 Practice Problem 16 - Unique Paths.mp4 (28.11 MB)
017 Practice Problem 17 - Palindromic Substrings.mp4 (25.51 MB)
001 Introduction to Bitwise Operators.mp4 (12.29 MB)
002 Common Bitwise Operators.mp4 (19.82 MB)
003 Leetcode 136 - Single Number - Java.mp4 (12.96 MB)
004 Leetcode 338 - Counting Bits - Java.mp4 (32.78 MB)
005 Leetcode 287 - Find the Duplicate Number - Java.mp4 (29.19 MB)
006 Leetcode 29 - Divide Two Integers - Java.mp4 (55.75 MB)
007 Leetcode 268 - Missing Number - Java.mp4 (19.82 MB)
008 Leetcode 191 - Number of 1 Bits - Java.mp4 (25.58 MB)
009 Leetcode 371 - Sum Of Two Integers - Java.mp4 (32.35 MB)
010 Leetcode 7 - Reverse Integer - Java.mp4 (31.32 MB)
001 Introduction to Disjoint Set Data Structure.mp4 (11.8 MB)
002 Understanding Disjoint Set Data Structure.mp4 (29.35 MB)
003 Implementing Disjoint Set Data Structure Part 1.mp4 (11.32 MB)
004 Union By Rank Optimization.mp4 (20.6 MB)
005 Union By Rank Implementation.mp4 (11.7 MB)
006 Path Compression Optimization.mp4 (14.04 MB)
007 Path Compression Optimization Implementation.mp4 (6.66 MB)
001 What Are Graphs.mp4 (28.46 MB)
002 Directed vs Undirected Graphs.mp4 (24.47 MB)
003 Weighted vs Unweighted Graphs.mp4 (25.85 MB)
004 Terms Of Graphs Part 1.mp4 (14.95 MB)
005 Types Of Graphs Part 1.mp4 (16.12 MB)
006 Types Of Graphs Part 2.mp4 (28.75 MB)
007 Implementing Graphs Part 1.mp4 (25.24 MB)
008 Implementing Graphs Part 2.mp4 (35.04 MB)
009 Graph Implementation Part 3.mp4 (14.81 MB)
010 Graph Adjacency Matrix Demonstration.mp4 (16.73 MB)
011 Graph Adjacency List Demonstration.mp4 (17.41 MB)
012 Introduction To Traversals.mp4 (22.87 MB)
013 BFS Working.mp4 (21.93 MB)
014 BFS Implementation.mp4 (23.93 MB)
015 Rotting Oranges Property Solution.mp4 (19.82 MB)
016 BFS Property 1.mp4 (20.27 MB)
017 BFS Over Binary Weighted Graphs.mp4 (17.97 MB)
018 Introduction to DFS.mp4 (26.04 MB)
019 DFS Iterative Implementation.mp4 (16.71 MB)
020 DFS Recursive Implementation.mp4 (15.68 MB)
021 DFS Important Properties.mp4 (18.34 MB)
022 Cycle Detection Part 1.mp4 (30.15 MB)
023 Cycle Detection Part 2.mp4 (15 MB)
024 Cycle Detection Part 3.mp4 (18.66 MB)
025 Cycle Detection Implementation.mp4 (16.82 MB)
026 What Is Topological Sorting.mp4 (7.19 MB)
027 Topological Sorting Example 1.mp4 (10.98 MB)
028 Single Source Shortest Path Algorithm.mp4 (9.92 MB)
029 Dijkstra's Algorithm.mp4 (21.38 MB)
030 Dijkstra's Algorithm Implementation.mp4 (36.77 MB)
031 Introduction To Bellman-Ford Algorithm.mp4 (12.44 MB)
032 Bellman-Ford Algorithm Working.mp4 (18.74 MB)
033 Bellman-Ford Algorithm Implementation.mp4 (20.75 MB)
034 Introduction To Minimum Spanning Tree.mp4 (7.95 MB)
035 Prim's Algorithm.mp4 (14.05 MB)
036 Prim's Algorithm Implementation.mp4 (19.27 MB)
037 Practice Problem 1 - Course Schedule.mp4 (52.19 MB)
038 Practice Problem 2 - Number of Islands.mp4 (45.31 MB)
039 Practice Problem 3 - Find the Town Judge.mp4 (30.91 MB)
040 Practice Problem 4 - Surrounded Regions.mp4 (56.2 MB)
041 Practice Problem 5 - Number of Enclaves.mp4 (32.01 MB)
042 Practice Problem 6 - Flood Fill.mp4 (23.4 MB)
043 Practice Problem 8 - Rotting Oranges.mp4 (54.1 MB)
044 Practice Problem 9 - Graph Valid Tree.mp4 (27.85 MB)
045 Practice Problem 10 - Number Of Connected Components In An Undirected Graph.mp4 (24.94 MB)
046 Practice Problem 11 - Pacific Atlantic Water.mp4 (77.19 MB)
047 Practice Problem 12 - Alien Dictionary.mp4 (51.54 MB)
048 Practice Problem 13 - Clone Graph.mp4 (29.59 MB)
001 Introduction To Greedy Algorithms.mp4 (33.4 MB)
002 Practice Problem 1 - Minimum Add To Make Parentheses Valid.mp4 (15.3 MB)
003 Practice Problem 2 - Best Time To Buy And Sell Stock II.mp4 (25.5 MB)
004 Practice Problem 3 - Candy.mp4 (44.69 MB)
001 Practice Problem 1 - Nim's Game.mp4 (18.72 MB)
001 Introduction To Pattern Matching.mp4 (17.3 MB)
002 Pattern Matching Brute Force.mp4 (18.41 MB)
003 Introduction to KMP Algorithm.mp4 (35.1 MB)
004 KMP Algorithm Version 1 - Extra Space.mp4 (26.06 MB)
005 Longest Prefix Suffix Brute Force Approach.mp4 (23.47 MB)
006 Longest Prefix Suffix Brute Force Implementation.mp4 (15.96 MB)
007 Longest Prefix Suffix Optimized Approach.mp4 (48.36 MB)
008 Longest Prefix Suffix Optimized Approach Implementation.mp4 (20.16 MB)
009 KMP Algorithm - Final Optimized Approach.mp4 (39.3 MB)
010 KMP Algorithm - Final Optimized Approach Implementation.mp4 (45.1 MB)
001 Practice Problem 1 - Longest Palindromic String.mp4 (24.38 MB)
001 Introduction to Range Sum Query Problem.mp4 (49.47 MB)
002 Introduction To Segment Tree - Building A Segment Tree.mp4 (24.67 MB)
003 Answering Queries Using Segment Trees.mp4 (44.37 MB)
004 Segment Tree Updating Values.mp4 (26.93 MB)
005 Segment Tree Build Function Implementation.mp4 (70.55 MB)
006 Segment Tree Query Function Implementation.mp4 (51.45 MB)
007 Segment Tree Update Function Implementation.mp4 (45.49 MB)]
Screenshot
DDownload
https://ddownload.com/dfq0in0pzvhp https://ddownload.com/0ee0hh9uf77m https://ddownload.com/duyeri86jt9i https://ddownload.com/hqlbm0msuu00 https://ddownload.com/7oviev20gyed https://ddownload.com/jypznxqf7zjb https://ddownload.com/1cl3gjvb1zb0
https://rapidgator.net/file/e6cb89ed71e762e0376b778f3453c228/ https://rapidgator.net/file/e86ca9a37de326c21361d00939c2ebe0/ https://rapidgator.net/file/9840d18ce4ca81109243affec77f8613/ https://rapidgator.net/file/904682cc2a2cf012c2f1902f9bca9f1e/ https://rapidgator.net/file/79163b4e226f3340370f168e9ccb913f/ https://rapidgator.net/file/9d5d2daacabe65544815d704cf11a3d7/ https://rapidgator.net/file/bd152e33772d4426e18d5f15e57be9cf/
NitroFlare
https://nitroflare.com/view/B3730AC93708444/ https://nitroflare.com/view/D66A5E5F1AE73DE/ https://nitroflare.com/view/849051FA0820B68/ https://nitroflare.com/view/BB5AB6620EB04CB/ https://nitroflare.com/view/DA5122825CBEB41/ https://nitroflare.com/view/2316CB8B91689C4/ https://nitroflare.com/view/CD7BCA66A55BD38/
