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

51,857 answers

573 users

How to print only the unique values from array in Java

2 Answers

0 votes
import java.util.Arrays;
 
public class MyClass {
    public static void main(String args[]) {
        Integer arr[] = {5, 2, 1, 3, 7, 1, 5, 9, 3, 3, 3, 2};
  
        Arrays.stream(arr).distinct().forEach((n) -> System.out.printf("%d ", n));
    }
}
  
 
  
  
/*
run:
  
5 2 1 3 7 9 
  
*/

 



answered Sep 22, 2020 by avibootz
edited Aug 20, 2021 by avibootz
0 votes
import java.util.Arrays; 
import java.util.Set; 
import java.util.TreeSet; 

public class MyClass {
    public static void main(String args[]) {
        Integer arr[] = {5, 2, 1, 3, 7, 1, 5, 9, 3, 3, 3, 2, 2};
  
        Set<Integer> uniqValues = new TreeSet<Integer>();
        uniqValues.addAll(Arrays.asList(arr));
         
        System.out.println(uniqValues);
    }
}
  
  
  
  
/*
run:
  
[1, 2, 3, 5, 7, 9]
  
*/

 



answered Aug 20, 2021 by avibootz
edited Dec 7, 2021 by avibootz

Related questions

1 answer 128 views
3 answers 187 views
3 answers 148 views
1 answer 127 views
1 answer 101 views
1 answer 155 views
3 answers 78 views
...