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
116 results
Welcome to Techie Akash! In this video, we'll cover one of the most common Java interview questions: How to reverse a string?
70 views
11 months ago
In this Java tutorial crash course, I'll teach you the Java programming language from scratch. Whether you're a beginner or just ...
25,826 views
3 months ago
I explain the mechanics behind variables, how they relate to memory, and what pointers are and how to think about them. Why?
349 views
10 months ago
Discover the elegance behind the **Fast & Slow Pointer** pattern — also known as the **Tortoise and Hare algorithm**!
95 views
7 months ago
Remove Duplicates from Sorted Array, the clean way! In this video, we break down LeetCode 26 using a simple and intuitive ...
127 views
9 months ago
You declared your variables, you allocated your array with new, you called a method that returned an object -- why are you getting ...
26 views
12 days ago
Tired of NullPointerException ruining your Java code? Learn how to handle null exceptions in Java 17 using smart techniques like ...
11 views
In this video, we explore how to handle null values effectively in Java. We start with the traditional approach using if-else checks ...
25 views
15leetcode #java #education Problem it solves The code solves the 3Sum problem: Given an array of integers, it finds all unique ...
8 views
4 months ago
Mastering LeetCode 27 is key to solving in-place array modification problems efficiently! Once you understand the Two Pointer ...
129 views
C and GUI Programming don't get along well. In this video, I used a lesser-known framework for Graphical User Interface (GUI) ...
345,538 views
6 months ago
Learn how to solve LeetCode 125 - Valid Palindrome using the elegant Two Pointers technique in Java. Forget about cleaning ...
61 views
8 months ago
Ready to master the Two Pointers pattern? In this video, we explore one of the most powerful techniques in algorithmic problem ...
1,924 views
A pointer is a variable that holds the memory address of another variable. We put an asterisk before the data type to declare a ...
91 views
Pointers are often used with functions to allow the function to modify the caller's variable. A simple way to use a pointer in a ...
49 views
Learn how to solve LeetCode 80 efficiently using the Two Pointers technique in Java! We're given a sorted array, and the goal is ...
83 views
Pointers in Go language allows us to access and modify the original field values of an instance of a structure. We can make a ...
221 views
Two Pointers Made Easy with the Valid Palindrome! Leetcode 125 - Valid Palindrome Problem Link: ...
415 views
In this video, we tackle the classic Merge Two Sorted Arrays problem from LeetCode and explore multiple solutions step by step, ...
378 views
1 month ago
The goal of this problem is to move all the zeroes in the array to the end, while keeping the order of the non-zero elements ...
14 views
5 months ago
18leetcode #java #education Input nums = [2, 2, 2, 2, 2], target = 8 Step 1: Sort the array Sorted nums = [2, 2, 2, 2, 2] (already ...
it will help you to start code in leetcode. ✓ Problem Description: You are given a sorted array of integers. Your task is to remove ...
Check out my Failproof OpenGL course for beginners: https://www.udemy.com/course/failproof-opengl-for-beginners/?
215,006 views
To open the Transcripts panel, please click here :
1 view
Minimum Window Substring – One of the Hardest Sliding Window Problems Fully Explained In this video, we solve the classic and ...
35 views