ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

4,372 results

Bitflip
Solve ANY Backtracking Problem on Leetcode (Template + Explanation)

Learn how to actually solve recursive backtracking problems and avoid common mistakes. I'll walk you through the 4-step ...

7:25
Solve ANY Backtracking Problem on Leetcode (Template + Explanation)

36,542 views

7 months ago

AbhiCodes
🧠 This Triangle Solves nCr in Seconds! | Java Dynamic Programming Trick

Did you know that a simple triangle can solve `nCr` faster than factorials ever could? In this video, I'll show you how to use ...

5:41
🧠 This Triangle Solves nCr in Seconds! | Java Dynamic Programming Trick

22 views

8 months ago

Nikhil Lohia
Word Break (LeetCode 139) | Full Solution using memoization and dynamic programming

Join this channel to get access to perks: https://www.youtube.com/channel/UCT-S2ngqEBoYCM5UKuNeELg/join Actual problem ...

17:18
Word Break (LeetCode 139) | Full Solution using memoization and dynamic programming

27,691 views

1 year ago

ByteQuest
Dynamic Programming Visually Explained Using Fibonacci Sequence

Ever struggled to understand Dynamic Programming? In this video, I'll break it down visually using the Fibonacci sequence as an ...

7:37
Dynamic Programming Visually Explained Using Fibonacci Sequence

3,502 views

11 months ago

ByteQuest
0/1 Knapsack Problem Explained Visually

In this video, we dive deep into the 0/1 Knapsack Problem using dynamic programming. We start by building a table to track the ...

8:10
0/1 Knapsack Problem Explained Visually

62,039 views

10 months ago

Code Scribbler
LeetCode 139: Word Break | Java Solution | Dynamic Programming

In this video, I tackle LeetCode 139: Word Break, a classic #dynamicprogramming problem where we need to determine if a string ...

11:24
LeetCode 139: Word Break | Java Solution | Dynamic Programming

238 views

6 months ago

ByteQuest
Longest Common Subsequence Problem Visually Explained | Leetcode 1143 | Dynamic Programming

In this video, we break down the Longest Common Subsequence Problem (LeetCode 1143) using Dynamic Programming.

5:39
Longest Common Subsequence Problem Visually Explained | Leetcode 1143 | Dynamic Programming

8,923 views

10 months ago

Repovive TV
From Newbie to Expert in 3 Months | 100% works!

Enjoying the video? Support Repovive by joining the channel membership. Shout-out, badges, and emojis included. To learn ...

15:14
From Newbie to Expert in 3 Months | 100% works!

127,265 views

11 months ago

GeeksforGeeks
Dynamic Programming Explained in 6 Minutes

Struggling with Dynamic Programming? Don't worry! In just 6 minutes, we'll break it down for you in the simplest way possible.

6:38
Dynamic Programming Explained in 6 Minutes

6,735 views

11 months ago

ByteQuest
Longest Increasing Subsequence Problem Explained | Leetcode  300 | Dynamic Programming

In this video, we break down the Longest Increasing Subsequence Problem (LeetCode 300) using Dynamic Programming.

5:06
Longest Increasing Subsequence Problem Explained | Leetcode 300 | Dynamic Programming

6,005 views

10 months ago

Erik Cupsa
I Solved 300 LeetCode Problems And This Is What I Learned...

LeetCode is stupidly hard... but I somehow managed to struggle through and solve THREE HUNDRED problems. This is ...

9:24
I Solved 300 LeetCode Problems And This Is What I Learned...

189,104 views

6 months ago

ByteQuest
Matrix Chain Multiplication Visually Explained | Dynamic Programming #hard

In this video, we'll dive deep into Matrix Chain Multiplication, one of the most important Dynamic Programming problems in DSA ...

10:57
Matrix Chain Multiplication Visually Explained | Dynamic Programming #hard

34,221 views

10 months ago

Code Scribbler
LeetCode 300: Longest Increasing Subsequence | Java Solution | Dynamic Programming

Dive into the classic #dynamicprogramming problem of finding the longest increasing subsequence in an array. This problem ...

11:08
LeetCode 300: Longest Increasing Subsequence | Java Solution | Dynamic Programming

43 views

6 months ago

Code Scribbler
LeetCode 64: Minimum Path Sum | Java Solution | Dynamic Programming

In this video, I tackle the #minimum #path #sum problem where we need to find the path with the minimum sum from top-left to ...

7:11
LeetCode 64: Minimum Path Sum | Java Solution | Dynamic Programming

96 views

3 months ago

ITower
Knapsack Problem Explained in 5 Minutes (JS) - Dynamic Programming

In this video, we're diving into the Knapsack Problem using JavaScript, explained in the simplest way possible. If you're a ...

5:17
Knapsack Problem Explained in 5 Minutes (JS) - Dynamic Programming

378 views

9 months ago

Code Scribbler
LeetCode 97: Interleaving String | Java Solution | Dynamic Programming

Determine if a string s3 can be formed by interleaving strings s1 and s2 without changing character order. #leetcode ...

8:58
LeetCode 97: Interleaving String | Java Solution | Dynamic Programming

111 views

3 months ago

Mayank Modi
Number of Ways to Paint N×3 Grid | Solution Walkthrough | Dynamic Programming | Java | LeetCode 1411

In this video, we break down LeetCode 1411 – Number of Ways to Paint an N × 3 Grid from absolute basics. This explanation is ...

19:37
Number of Ways to Paint N×3 Grid | Solution Walkthrough | Dynamic Programming | Java | LeetCode 1411

99 views

1 month ago

Code Kage
Maximum Non-Adjacent Nodes Sum | Tree Dynamic Programming Explained with Example (Java)

In this video, we'll solve the Maximum Non-Adjacent Nodes Sum problem on a binary tree using Recursion + Dynamic ...

13:25
Maximum Non-Adjacent Nodes Sum | Tree Dynamic Programming Explained with Example (Java)

17 views

3 months ago

Code Scribbler
LeetCode 198: House Robber | Java Solution | Dynamic Programming

In this video, I solve the classic #houserobber problem where we need to determine the maximum amount we can rob without ...

7:45
LeetCode 198: House Robber | Java Solution | Dynamic Programming

19 views

6 months ago

Code Scribbler
LeetCode 322: Coin Change | Java Solution | Dynamic Programming

In this video, I solve the classic #coinchange problem where we need to find the fewest number of coins to make up a given ...

11:19
LeetCode 322: Coin Change | Java Solution | Dynamic Programming

192 views

6 months ago

Sajjaad Khader
Data Structures Explained for Beginners - How I Wish I was Taught

Data structures are essential for coding interviews and real-world software development. In this video, I'll break down the most ...

15:51
Data Structures Explained for Beginners - How I Wish I was Taught

769,316 views

10 months ago

Nikhil Lohia
Maximal Square (LeetCode 221) | Full Solution using Memoization | Dynamic Programming

Join this channel to get access to perks: https://www.youtube.com/channel/UCT-S2ngqEBoYCM5UKuNeELg/join Actual problem ...

14:56
Maximal Square (LeetCode 221) | Full Solution using Memoization | Dynamic Programming

5,199 views

8 months ago

Code Scribbler
LeetCode 63: Unique Paths II | Java Solution | Dynamic Programming

In this video, we solve LeetCode's Unique Paths II problem using #dynamicprogramming. We navigate a grid with obstacles to ...

8:00
LeetCode 63: Unique Paths II | Java Solution | Dynamic Programming

58 views

2 months ago

Code Scribbler
LeetCode 45: Jump Game II | Java Solution | Dynamic Programming & Greedy Approach

Tackle the classic #jumpgame challenge where you need to find the minimum number of jumps to reach the end of an array of ...

8:13
LeetCode 45: Jump Game II | Java Solution | Dynamic Programming & Greedy Approach

230 views

6 months ago

BugNoJutsu
LeetCode 837 | New 21 Game 🔥 Dynamic Programming Explained with Intuition & Easy Approach (Python)

Welcome to bugnojutsu – In this video, we dive deep into LeetCode 837. New 21 Game and solve it step by step using ...

5:52
LeetCode 837 | New 21 Game 🔥 Dynamic Programming Explained with Intuition & Easy Approach (Python)

501 views

5 months ago