Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,887 questions

51,814 answers

573 users

How to remove duplicates from ArrayList in Java

1 Answer

0 votes
import java.util.*;
   
public class MyClass {
    public static <T> void removeDuplicates(ArrayList<T> al) { 
        Set<T> set = new LinkedHashSet<>(); 
  
        set.addAll(al); 
  
        al.clear(); 

        al.addAll(set); 
    } 
    public static void main(String args[]) {
        ArrayList<Integer> al = new ArrayList<>(Arrays.asList(3, 1, 6, 4, 3, 3, 6, 8, 3, 3, 3)); 

        System.out.println(al); 
         
        removeDuplicates(al); 
 
        System.out.println(al); 
 
    }
}
   
   
   
   
/*
run:
   
[3, 1, 6, 4, 3, 3, 6, 8, 3, 3, 3]
[3, 1, 6, 4, 8]

*/

 



answered Apr 19, 2020 by avibootz

Related questions

1 answer 52 views
1 answer 107 views
2 answers 201 views
1 answer 126 views
126 views asked Apr 20, 2020 by avibootz
1 answer 165 views
5 answers 323 views
1 answer 72 views
...