ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

1,906 results

Bog
Beginner programmer vs "easy" LeetCode questions

Trying to solve LeetCode questions as a beginner programmer. My YT community & program: https://thaomaoh.com/community ...

30:14
Beginner programmer vs "easy" LeetCode questions

403,188 views

6 months ago

Bitflip
How to Instantly Recognize Leetcode Patterns (500 problems later)

After struggling as a beginner, I've created a systematic ultimate guide to instantly recognize LeetCode problem patterns in under ...

6:56
How to Instantly Recognize Leetcode Patterns (500 problems later)

91,224 views

1 year ago

Nishant Chahar
How to start Leetcode in 2026 ( as a Beginner ) | LeetCode Roadmap 2026

In this video, we break the biggest myth around LeetCode that more questions automatically mean better interviews. You'll ...

13:42
How to start Leetcode in 2026 ( as a Beginner ) | LeetCode Roadmap 2026

119,436 views

5 months ago

Byte Decode
LeetCode 56: Merge Intervals | Most Asked Interview Question | Python + Dry Run in Hindi

In this video, we solve Merge Intervals, one of the most frequently asked coding interview questions. This is a popular question in ...

9:12
LeetCode 56: Merge Intervals | Most Asked Interview Question | Python + Dry Run in Hindi

383 views

11 months ago

DataEngineering360
Leetcode 49. Group Anagrams| Hindi | Python | Leetcode 1 | Optimized way

leetcode #python #timecomplexity Q. Given an array of strings strs, group the anagrams together. You can return the answer in ...

5:14
Leetcode 49. Group Anagrams| Hindi | Python | Leetcode 1 | Optimized way

295 views

7 months ago

DataEngineering360
Leetcode 167. Two Sum II - Input Array Is Sorted | Hindi | Python | Leetcode | Optimized way

leetcode #python #timecomplexity Q. Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, ...

3:46
Leetcode 167. Two Sum II - Input Array Is Sorted | Hindi | Python | Leetcode | Optimized way

136 views

7 months ago

DataEngineering360
Leetcode 155. Min Stack | Hindi | Python | Leetcode 1 | Optimized way

leetcode #python #timecomplexity Q. Design a stack that supports push, pop, top, and retrieving the minimum element in constant ...

6:53
Leetcode 155. Min Stack | Hindi | Python | Leetcode 1 | Optimized way

33 views

7 months ago

ezCommit
Struggling With LeetCode? Learn This First & Level Up Fast!

Struggling With LeetCode? Learn This First & Level Up Fast! Instagram: https://www.instagram.com/_azim_yt/ Live Channel: ...

3:06
Struggling With LeetCode? Learn This First & Level Up Fast!

38,066 views

1 month ago

freeCodeCamp.org and AlgoMonster
Data Structure and Algorithm Patterns for LeetCode Interviews – Tutorial

This is a comprehensive course on data structures and algorithms. @algo.monster will break down the most essential data ...

1:15:03
Data Structure and Algorithm Patterns for LeetCode Interviews – Tutorial

752,704 views

11 months ago

DataEngineering360
Leetcode 347. Top K Frequent Elements | Hindi | Python | Leetcode 1 | Optimized way

leetcode #python #timecomplexity Q. Given an integer array nums and an integer k, return the k most frequent elements. You may ...

3:43
Leetcode 347. Top K Frequent Elements | Hindi | Python | Leetcode 1 | Optimized way

230 views

7 months ago

Byte Decode
LeetCode 27 – Remove Element | Best Logic & Python Code Explained in Hindi

In this video, we'll solve Remove Element using an efficient two-pointer approach. I'll walk you through the logic and write clean, ...

5:43
LeetCode 27 – Remove Element | Best Logic & Python Code Explained in Hindi

1,250 views

11 months ago

Byte Decode
LeetCode 28 – Find the Index of the First Occurrence in a String | Python Code Explained in Hindi

In this video, we solve Find the Index of the First Occurrence in a String using a simple brute-force approach in Python. I'll walk ...

3:32
LeetCode 28 – Find the Index of the First Occurrence in a String | Python Code Explained in Hindi

893 views

11 months ago

DataEngineering360
Leetcode 3. Longest Substring Without Repeating Characters | Hindi | Python | Leetcode|Optimized way

leetcode #python #timecomplexity Q. Given a string s, find the length of the longest substring without duplicate characters.

5:29
Leetcode 3. Longest Substring Without Repeating Characters | Hindi | Python | Leetcode|Optimized way

495 views

7 months ago

DataEngineering360
Leetcode 121. Best Time to Buy and Sell Stock | Hindi | Python | Leetcode 1 | Optimized way

leetcode #python #timecomplexity Q. You are given an array prices where prices[i] is the price of a given stock on the ith day.

4:15
Leetcode 121. Best Time to Buy and Sell Stock | Hindi | Python | Leetcode 1 | Optimized way

94 views

7 months ago

DataEngineering360
Leetcode 88. Merge Sorted Array | Hindi | Python | Leetcode 1 | Optimized way | Time complexity

leetcode #python Q. You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and ...

7:55
Leetcode 88. Merge Sorted Array | Hindi | Python | Leetcode 1 | Optimized way | Time complexity

58 views

7 months ago

DataEngineering360
Leetcode 20. Valid Parentheses | Hindi | Python | Leetcode 1 | Optimized way

leetcode #python #timecomplexity Q. Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input ...

5:10
Leetcode 20. Valid Parentheses | Hindi | Python | Leetcode 1 | Optimized way

63 views

7 months ago

DataEngineering360
Leetcode 125. Valid Palindrome | Hindi | Python | Leetcode | Optimized way

leetcode #python #timecomplexity A phrase is a palindrome if, after converting all uppercase letters into lowercase letters and ...

3:50
Leetcode 125. Valid Palindrome | Hindi | Python | Leetcode | Optimized way

159 views

7 months ago

DataEngineering360
Leetcode 242. Valid Anagram | Hindi | Python | Leetcode | Optimized way

leetcode #python #timecomplexity Q. Given two strings s and t, return true if t is an anagram of s, and false otherwise. Example 1: ...

4:59
Leetcode 242. Valid Anagram | Hindi | Python | Leetcode | Optimized way

98 views

7 months ago

DataEngineering360
Leetcode 202. Happy Number | Hindi | Python | Leetcode | Optimized way

leetcode #python #timecomplexity Q. Write an algorithm to determine if a number n is happy. A happy number is a number defined ...

3:08
Leetcode 202. Happy Number | Hindi | Python | Leetcode | Optimized way

79 views

7 months ago

DataEngineering360
Leetcode 217. Contains Duplicate | Hindi | Python | Leetcode | Optimized way

leetcode #python #timecomplexity Q. Given an integer array nums, return true if any value appears at least twice in the array, and ...

2:16
Leetcode 217. Contains Duplicate | Hindi | Python | Leetcode | Optimized way

141 views

7 months ago