Removing Duplicates from Sorted Array Example in Java
On this page (10sections)
Introduction
Simple Java program for Removing duplicates from sorted array is a classic Java console program that demonstrates the concept with complete source code and sample output. Arrays store fixed-size sequences with fast index access — a foundation before collections.
This tutorial walks through the program line by line, explains how the logic works, and highlights best practices you can apply in your own code.
Definition
A data structure consisting of a collection of elements (values or variables), each identified by an index or key is called an Array. The position of each element in an array can be computed from its index.
Syntax
Data_type[] Variable_name = new Data_type[Length];
Removing duplicates from sorted array Program
public class RemoveDuplicatesFromSortedArray {
public static int[] removeDuplicates(int[] input){
int j = 0;
int i = 1;
if(input.length<2){
return input;
}
while (i<input.length) {
if(input[i] == input[j]){
i++;
}else{
input[++j] = input[i++];
}
}
int[] output = new int[j+1];
for( int k = 0 ; k < output.length; k++){
output[k] = input[k];
}
return output;
}
public static void main(String[] args) {
int[] input = {2,3,66,6,8,9,10,10};
int[] output = removeDuplicates(input);
for(int i : output){
System.out.println(i+" ");
}
}
}
Sample Output
2
3
66
6
8
9
10
When to use
Use this simple java program for removing duplicates from sorted array example when learning or revising core Java syntax.
How it works
-
Execution begins in the
mainmethod — the JVM calls this method when you run the class. -
int j = 0;updates a variable used in the calculation or output. -
int i = 1;updates a variable used in the calculation or output. -
The
ifstatement runs the nested code only when the condition is true. -
The
ifstatement runs the nested code only when the condition is true. -
input[++j] = input[i++];updates a variable used in the calculation or output. -
int[] output = new int[j+1];updates a variable used in the calculation or output. -
A loop repeats the block until its condition becomes false.
Best Practices
- Use meaningful variable and class names that describe their purpose.
- Compile and run the program locally — modify values to see how output changes.
- Read compiler errors carefully; they usually point to the exact line to fix.
Common Mistakes
- Copying code without understanding each line — practice by changing one statement at a time.
- Mismatching the public class name and the
.javafilename. - Forgetting semicolons at the end of statements.