ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

30 results

CodeLucky
Maximum Score Words Solution - Backtracking Explained

Backtracking 01:37 - The Decision Tree 01:58 - Backtracking Algorithm Steps 02:21 - Checking Validity 02:39 - Calculating Word ...

3:51
Maximum Score Words Solution - Backtracking Explained

0 views

8 hours ago

CodeLucky
N-Queens Problem Explained - Backtracking Algorithm Visualized

Master the N-Queens problem with this clear, step-by-step visual guide! ♟️ In this video, we break down one of the most classic ...

3:18
N-Queens Problem Explained - Backtracking Algorithm Visualized

3 views

8 hours ago

CodeLucky
Sudoku Solver Algorithm: Backtracking Explained for Beginners

Learn how to build a Sudoku Solver using the Backtracking algorithm! In this video, we break down the logic behind solving ...

3:23
Sudoku Solver Algorithm: Backtracking Explained for Beginners

0 views

8 hours ago

CodeLucky
Partition to K Equal Sum Subsets - Backtracking Algorithm Explained

Learn how to solve the "Partition to K Equal Sum Subsets" problem using Backtracking! This video breaks down the logic ...

3:51
Partition to K Equal Sum Subsets - Backtracking Algorithm Explained

0 views

8 hours ago

CodeLucky
Generate All Permutations - Recursion & Backtracking Algorithm Tutorial

Learn how to generate all permutations of a string or array using Recursion and Backtracking! In this video, we break down the ...

3:54
Generate All Permutations - Recursion & Backtracking Algorithm Tutorial

0 views

4 days ago

Logic Lab
One Backtracking Trick That Solves Combination Sum (LeetCode 39)

In this video, we solve LeetCode Problem 39: Combination Sum step by step using backtracking. Instead of memorizing code, ...

2:19
One Backtracking Trick That Solves Combination Sum (LeetCode 39)

10 views

2 days ago

CodeLucky
Letter Combinations of a Phone Number - LeetCode 17 - Backtracking Tutorial

In this video, we break down the classic backtracking algorithm. We will visualize the decision tree , trace the recursion ...

3:25
Letter Combinations of a Phone Number - LeetCode 17 - Backtracking Tutorial

0 views

8 hours ago

CodeLucky
Generate All Subsets (Power Set) - Recursive Backtracking Explained

Learn how to generate all subsets of a set (the Power Set) using recursion and backtracking! In this video, we break down the ...

3:45
Generate All Subsets (Power Set) - Recursive Backtracking Explained

6 views

4 days ago

CodeLucky
Word Search LeetCode Solution - DFS Backtracking Explained

Learn how to solve the Word Search problem (LeetCode 79) using Depth First Search (DFS) and Backtracking! In this video ...

3:32
Word Search LeetCode Solution - DFS Backtracking Explained

0 views

8 hours ago

CodeLucky
Word Search II - LeetCode Hard Solution Explained (Trie + Backtracking)

Master the Word Search II problem using the Trie data structure and Backtracking! In this video, we break down one of the most ...

3:38
Word Search II - LeetCode Hard Solution Explained (Trie + Backtracking)

0 views

8 hours ago

CodeLucky
N-Queens II Solution Explained - Count Valid Placements (LeetCode Hard)

We'll visualize the constraints, walk through the backtracking algorithm step-by-step, and analyze the time and space complexity.

3:58
N-Queens II Solution Explained - Count Valid Placements (LeetCode Hard)

0 views

8 hours ago

Logic Lab
Why This Small Condition Fixes All Duplicates (LeetCode 40)

In this video, we solve LeetCode Problem 40: Combination Sum II using backtracking, focusing on the single condition that ...

3:39
Why This Small Condition Fixes All Duplicates (LeetCode 40)

0 views

1 day ago

CodeLucky
Print All Binary Strings of Length N - Recursion & Backtracking Tutorial

Learn how to generate all possible binary strings of length N using recursion and backtracking! In this video, we break down ...

3:42
Print All Binary Strings of Length N - Recursion & Backtracking Tutorial

0 views

4 days ago

CodeLucky
Power Set with Duplicates (Subsets II) - LeetCode Pattern Explained

Learn how to generate all unique subsets from a collection that contains duplicate numbers! This is a classic coding interview ...

3:31
Power Set with Duplicates (Subsets II) - LeetCode Pattern Explained

2 views

4 days ago

CodeLucky
Word Break II - LeetCode Hard - Dynamic Programming & Backtracking Explanation

Learn how to solve the Word Break II coding problem efficiently! In this video, we tackle a popular 'Hard' level interview ...

3:28
Word Break II - LeetCode Hard - Dynamic Programming & Backtracking Explanation

2 views

4 days ago

CodeLucky
Path Sum II - LeetCode Solution & Explanation (Find All Paths)

Learn how to solve the Path Sum II problem efficiently! ➡️ In this video, we break down how to find all root-to-leaf paths in a ...

3:57
Path Sum II - LeetCode Solution & Explanation (Find All Paths)

3 views

2 days ago

CodeLucky
Split Array into Fibonacci Sequence - LeetCode 842 Solution Explained

Learn how to solve the 'Split Array into Fibonacci Sequence' problem (LeetCode 842) using Backtracking and Depth First Search ...

3:43
Split Array into Fibonacci Sequence - LeetCode 842 Solution Explained

1 view

8 hours ago

CodeLucky
Word Ladder II - Finding All Shortest Paths (LeetCode Hard)

Learn how to solve the Word Ladder II problem efficiently! In this video, we break down one of the trickiest graph problems often ...

3:20
Word Ladder II - Finding All Shortest Paths (LeetCode Hard)

0 views

2 days ago

CodeLucky
Depth First Search (DFS) in Graphs: Recursive Traversal Explained

Master the Depth First Search (DFS) algorithm for Graph data structures! 🕸️ In this video, we break down the recursive logic ...

3:38
Depth First Search (DFS) in Graphs: Recursive Traversal Explained

0 views

2 days ago

CodeLucky
Iterative Inorder Traversal (Binary Tree) - Python Logic & Visualization

Master the Iterative Inorder Traversal algorithm using a Stack! In this video, we break down how to traverse a binary tree ...

3:35
Iterative Inorder Traversal (Binary Tree) - Python Logic & Visualization

4 views

3 days ago

CodeLucky
Binary Tree Paths - Root to Leaf Guide (LeetCode 257) - Python Tutorial

Learn how to solve the Binary Tree Paths problem! In this video, we break down how to find all root-to-leaf paths in a binary tree ...

3:01
Binary Tree Paths - Root to Leaf Guide (LeetCode 257) - Python Tutorial

0 views

2 days ago

CodeLucky
Matchsticks to Square - LeetCode 473 Solution Explained

Learn how to solve the 'Matchsticks to Square' coding interview problem! In this video, we break down the logic behind ...

3:23
Matchsticks to Square - LeetCode 473 Solution Explained

0 views

8 hours ago

vlogommentary
Maximizing the mex Value by Selecting Cells in an n x n Matrix

Learn an efficient backtracking approach to select n cells from an n x n matrix, maximizing the minimal excluded positive integer ...

3:24
Maximizing the mex Value by Selecting Cells in an n x n Matrix

0 views

5 days ago

codeTips
Count Residue Prefixes | LeetCode 3803 | Simulation

In this video I'll be discussing the solution of Count Residue Prefixes. LeetCode Problem Link ...

3:44
Count Residue Prefixes | LeetCode 3803 | Simulation

21 views

2 days ago

CodeLucky
Path Sum III - LeetCode Binary Tree Solution Explained (O(N) Prefix Sum)

Learn how to solve the Path Sum III problem on LeetCode efficiently! In this video, we tackle a common binary tree interview ...

3:10
Path Sum III - LeetCode Binary Tree Solution Explained (O(N) Prefix Sum)

0 views

2 days ago