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

51,797 answers

573 users

How to flatten a 2D array into a sorted one-dimensional array with unique values in Java

1 Answer

0 votes
import java.util.Set;
import java.util.Arrays;
import java.util.Comparator;
import java.util.stream.Collectors;

public class Flatten2DArrayIntoASorted1DArrayWithUniqueValues_Java {
    public static void main(String[] args) {
        int[][] array2d = {
            {4, 3, 3, 2},
            {30, 10},
            {10},
            {1, 1, 6, 7, 7, 7, 8},
        };

        Set<Integer> set = Arrays.stream(array2d)
                                  .flatMapToInt(Arrays::stream)
                                  .distinct()
                                  .boxed()
                                  .sorted(Comparator.naturalOrder())
                                  .collect(Collectors.toSet());

        System.out.println(set.stream().map(String::valueOf).collect(Collectors.joining(", ")));
        
        for (Integer n : set) {
            System.out.print(n + " ");
        }
    }
}



/*
run:

1, 2, 3, 4, 6, 7, 8, 10, 30
1 2 3 4 6 7 8 10 30 

*/

 



answered Aug 15, 2024 by avibootz
...