Longest Substring Program Without Repeating Character

By | July 27, 2024

Longest Substring Program Without Repeating Character It should return the Substring. Ex: The String value is : “abcadx” , for that non-repeating substring is: “bcadx”. So here we removed ‘a’ in this program because it is repeated character in this string.

TWO POINTERS IN JAVA

By | June 10, 2024

The two pointers algorithm is a technique that uses two pointers to solve various types of problems in an array or list. These problems usually involve searching for pairs or subarrays with certain properties, such as finding a pair of numbers that sum to a specific value, or removing duplicates from a sorted array. The basic idea is… Read More »

BUBBLE SORT PROGRAM IN JAVA

By | June 9, 2024

BUBBLE SORT PROGRAM Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order. The pass through the list is repeated until the list is sorted. Here is a simple implementation of Bubble Sort in Java: In this code, bubbleSort(int arr[]) is the… Read More »

FIND THE HIGHEST ALTITUDE PROGRAM IN JAVA

By | March 27, 2024

Example 1:Input: gain = [-5,1,5,0,-7] Output: 1 Explanation: The altitudes are [0,-5,-4,1,1,-6]. The highest is 1. To find the highest altitude of a point during a road trip, we can iterate through the gain array and calculate the cumulative altitude at each point. Then, we track the maximum altitude reached during the trip. Here’s the Java program implementing… Read More »