Aryan PrajapatKnowledge Contributor
Write a Program in java to remove duplicates in an ArrayList.
Write a Program in java to remove duplicates in an ArrayList.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
package simplilearnJava;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
public class ArrayDuplicate {
public static void main(String args[]) {
List num = new ArrayList();
num.add(1);
num.add(2);
num.add(3);
num.add(4);
num.add(5);
num.add(6);
num.add(3);
num.add(4);
num.add(5);
num.add(6);
System.out.println(“Your list of elements in ArrayList : ” + num);
Set primesWithoutDuplicates = new LinkedHashSet(num);
num.clear();
num.addAll(primesWithoutDuplicates);
System.out.println(“list of original numbers without duplication: ” + num);
}
}