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,926 questions

51,859 answers

573 users

How to print all elements of an array only once in Java

1 Answer

0 votes
import java.util.HashMap; 

public class MyClass {
    static void printElementsOnlyOnce(int[] arr) { 
        HashMap<Integer,Integer> hm = new HashMap<Integer,Integer>(); 
            for (int i = 0; i < arr.length; i++) { 
                hm.put(arr[i], i); 
            } 
        System.out.println(hm.keySet()); 
    }
    public static void main(String args[]) {
      int[] arr = {3, 5, 9, 1, 7, 8, 1, 9, 0, 3, 9, 9, 5, 5, 5};   

      printElementsOnlyOnce(arr);
    }
}


  
/*
run:
  
[0, 1, 3, 5, 7, 8, 9]
  
*/

 



answered May 4, 2020 by avibootz

Related questions

1 answer 133 views
1 answer 152 views
1 answer 140 views
1 answer 134 views
1 answer 138 views
1 answer 120 views
...