Hey guys can u help me to solve this problem? Write a Java program to remove the
ID: 3727260 • Letter: H
Question
Hey guys can u help me to solve this problem?
Write a Java program to remove the duplicate elements of a given sorted integer array and remove the duplicate elements from the array. After removing the duplicate elements, the program should return the array without duplicate elements and the length of the new array. Save the application as RemoveDup.java.
Examples:
Input: arr[] = {3, 3, 3, 3, 3}
Output: arr[] = {3}
new size = 1
Input: arr[] = {1, 2, 2, 3, 4, 4, 4, 5, 5}
Output: arr[] = {1, 2, 3, 4, 5}
new length = 5
Explanation / Answer
Following is the java code :