Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
53 results
Welcome to Day 2 of the Binary Search DSA Series! In this video, we solve LeetCode 704 ā Binary Search using Java. BeforeĀ ...
2 views
14h ago
Welcome to Day 23 of my 30 Days of Becoming a Better Problem Solver series on Tech With Hitesh! Today, I'm solving LeetCodeĀ ...
1 view
21h ago
LeetCode 4: Median of Two Sorted Arrays (Hard) Problem: https://leetcode.com/problems/median-of-two-sorted-arrays/ This videoĀ ...
0 views
1h ago
Find the integer square root of x (rounded down) without using Math.sqrt(). This is where we start the "Binary Search on Answer"Ā ...
11 views
1d ago
HashMap - Need sorted data search in O(log N)? ā Binary Search - Need shortest path on unweighted graph? ā BFS (Queue)Ā ...
3 views
Problem #333 of the Brute To Best series: Largest BST Subtree. Given the root of a binary tree, return the number of nodes in itsĀ ...
7h ago
#251 Flatten 2D Vector is the two-level version, and #173 Binary Search Tree Iterator uses the same lazy stack. Earlier in theĀ ...
3h ago
Packages with given weights must be shipped in order, within D days. Every day the ship carries as many packages as it canĀ ...
25 views
Problem #349 of the Brute To Best series: Intersection of Two Arrays. Given two integer arrays nums1 and nums2, return theirĀ ...
22Ā min ago
Binary search on the answer is the pattern behind Koko Eating Bananas (LeetCode 875), and this video draws every step of it onĀ ...
20h ago
Every element in a sorted array appears exactly twice, except one. Find the one that appears once. We solve it three ways:Ā ...
10 views
This is the general version of the mountain problem. The array can have several peaks, and a peak can be at the very start or theĀ ...
Binary search finds the position, but inserting in the middle still costs O(n). A BST with subtree sizes can give O(n log n), but itĀ ...
9 views
22h ago
A mountain array strictly increases up to a peak and then strictly decreases. Find the index of the peak. In this video: BruteĀ ...
BINARY SEARCH IN C++ | 30 DSA PROBLEMS | LOGINNLEARN Welcome to a complete **Binary Search in C++**Ā ...
858 views
Streamed 19h ago
Koko has n piles of bananas and h hours before the guards come back. Each hour she picks one pile and eats up to k bananasĀ ...
13 views
#23 Merge k Sorted Lists uses the same k-stream merge, and #1201 Ugly Number III switches to binary search. Earlier in theĀ ...
Binary search on k, where k² is less than or equal to n, is a safe O(log n) alternative. Edge cases: n = 0 returns 0, n = 1 returns 1, ...
PROBLEM DESCRIPTION* Given the root of a binary tree, imagine yourself standing on the **right side** of it, return _the valuesĀ ...
6 views
2h ago