ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

116 results

Techie Akash
Part 4 - Reverse a String in Java | Two-Pointer Technique | Popular Java Interview Question

Welcome to Techie Akash! In this video, we'll cover one of the most common Java interview questions: How to reverse a string?

5:53
Part 4 - Reverse a String in Java | Two-Pointer Technique | Popular Java Interview Question

70 views

11 months ago

Amigoscode
learn java in 10 minutes. NO MORE PSVM

In this Java tutorial crash course, I'll teach you the Java programming language from scratch. Whether you're a beginner or just ...

12:12
learn java in 10 minutes. NO MORE PSVM

25,826 views

3 months ago

Michael teaches CS
Pointers - C/C++/Go - The Michael Explanation

I explain the mechanics behind variables, how they relate to memory, and what pointers are and how to think about them. Why?

19:58
Pointers - C/C++/Go - The Michael Explanation

349 views

10 months ago

Code Viento
How Fast and Slow Pointers Solve Tricky Problems!

Discover the elegance behind the **Fast & Slow Pointer** pattern — also known as the **Tortoise and Hare algorithm**!

7:27
How Fast and Slow Pointers Solve Tricky Problems!

95 views

7 months ago

Code Viento
⚡️Remove Duplicates in O(n) – Simple Two Pointers Solution in Java!

Remove Duplicates from Sorted Array, the clean way! In this video, we break down LeetCode 26 using a simple and intuitive ...

3:19
⚡️Remove Duplicates in O(n) – Simple Two Pointers Solution in Java!

127 views

9 months ago

DesignCodeDebugRepeat
Java NullPointerException three common causes (and solutions!) -- Fix it fast!

You declared your variables, you allocated your array with new, you called a method that returned an object -- why are you getting ...

10:53
Java NullPointerException three common causes (and solutions!) -- Fix it fast!

26 views

12 days ago

ProgrammerBasics
How to Handle Null Exceptions in Java 17 2025?

Tired of NullPointerException ruining your Java code? Learn how to handle null exceptions in Java 17 using smart techniques like ...

1:02
How to Handle Null Exceptions in Java 17 2025?

11 views

7 months ago

TestArchive
Java 8 for Testers #44 - Null Handling in Java: Traditional vs. Optional Class Demo

In this video, we explore how to handle null values effectively in Java. We start with the traditional approach using if-else checks ...

5:32
Java 8 for Testers #44 - Null Handling in Java: Traditional vs. Optional Class Demo

25 views

11 months ago

CrazyCoding
leetcode 15 - 3sum  | Optimal Approach in JAVA

15leetcode #java #education Problem it solves The code solves the 3Sum problem: Given an array of integers, it finds all unique ...

21:41
leetcode 15 - 3sum | Optimal Approach in JAVA

8 views

4 months ago

Code Viento
🚀Eliminate Element the Fast Way – Two Pointers Java Solution

Mastering LeetCode 27 is key to solving in-place array modification problems efficiently! Once you understand the Two Pointer ...

2:58
🚀Eliminate Element the Fast Way – Two Pointers Java Solution

129 views

9 months ago

Faisal's Devlog
This is why you don't build GUIs in C

C and GUI Programming don't get along well. In this video, I used a lesser-known framework for Graphical User Interface (GUI) ...

6:09
This is why you don't build GUIs in C

345,538 views

6 months ago

Code Viento
Two Elegant Solutions to Valid Palindrome — Let’s Compare Them! 🥊

Learn how to solve LeetCode 125 - Valid Palindrome using the elegant Two Pointers technique in Java. Forget about cleaning ...

2:00
Two Elegant Solutions to Valid Palindrome — Let’s Compare Them! 🥊

61 views

8 months ago

Code Viento
Two Pointers: The Easiest Way to Solve Hard Problems

Ready to master the Two Pointers pattern? In this video, we explore one of the most powerful techniques in algorithmic problem ...

3:41
Two Pointers: The Easiest Way to Solve Hard Problems

1,924 views

8 months ago

Begin Coding Fast
Pointers in Go language - Go programming language tutorial (11)

A pointer is a variable that holds the memory address of another variable. We put an asterisk before the data type to declare a ...

7:10
Pointers in Go language - Go programming language tutorial (11)

91 views

7 months ago

Begin Coding Fast
Relationship between pointers and functions - Go programming language tutorial (22)

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 ...

10:52
Relationship between pointers and functions - Go programming language tutorial (22)

49 views

4 months ago

Code Viento
🧠The Fastest Way to Remove Duplicates – Two Pointers Explained!

Learn how to solve LeetCode 80 efficiently using the Two Pointers technique in Java! We're given a sorted array, and the goal is ...

4:21
🧠The Fastest Way to Remove Duplicates – Two Pointers Explained!

83 views

9 months ago

Begin Coding Fast
Pointers to structures - Go programming language tutorial (23)

Pointers in Go language allows us to access and modify the original field values of an instance of a structure. We can make a ...

12:35
Pointers to structures - Go programming language tutorial (23)

221 views

4 months ago

DKodeTree
Valid Palindrome - LeetCode 125 | Two Pointers | Full Concept + Python Code

Two Pointers Made Easy with the Valid Palindrome! Leetcode 125 - Valid Palindrome Problem Link: ...

6:25
Valid Palindrome - LeetCode 125 | Two Pointers | Full Concept + Python Code

415 views

7 months ago

Geekific
Merge Sorted Arrays Like a Pro | Two-Pointer LeetCode Solution Explained | LeetCode 88 | Geekific

In this video, we tackle the classic Merge Two Sorted Arrays problem from LeetCode and explore multiple solutions step by step, ...

4:41
Merge Sorted Arrays Like a Pro | Two-Pointer LeetCode Solution Explained | LeetCode 88 | Geekific

378 views

1 month ago

CrazyCoding
leetcode 283 - move all the zeroes in the array | Optimal Approach  in JAVA.

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 ...

9:30
leetcode 283 - move all the zeroes in the array | Optimal Approach in JAVA.

14 views

5 months ago

CrazyCoding
leetcode 18  - 4sum  | Optimal Approach in JAVA .

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 ...

20:57
leetcode 18 - 4sum | Optimal Approach in JAVA .

11 views

4 months ago

CrazyCoding
leetcode 26 - remove the duplicates in sorted array | Optimal Approach  in JAVA.

it will help you to start code in leetcode. ✓ Problem Description: You are given a sorted array of integers. Your task is to remove ...

10:55
leetcode 26 - remove the duplicates in sorted array | Optimal Approach in JAVA.

14 views

5 months ago

Low Level Game Dev
The 5 Levels Of C++

Check out my Failproof OpenGL course for beginners: https://www.udemy.com/course/failproof-opengl-for-beginners/?

10:29
The 5 Levels Of C++

215,006 views

7 months ago

csprofmarin
U17 GMT20250326 004259 Recording 1920x1080

To open the Transcripts panel, please click here :

1:21:19
U17 GMT20250326 004259 Recording 1920x1080

1 view

3 months ago

Mahesh Ahirwar
Minimum Window Substring | Sliding Window + Two Pointer Deep Explanation | DSA Sheet Solution

Minimum Window Substring – One of the Hardest Sliding Window Problems Fully Explained In this video, we solve the classic and ...

26:54
Minimum Window Substring | Sliding Window + Two Pointer Deep Explanation | DSA Sheet Solution

35 views

1 month ago