Skip to content
Advertisement

How can I collect two-dimensional Array into a Map<String, Set>?

I have an array of arrays of two strings.

JavaScript

How can I collect the above array into a Map<String, Set<String>> whose key is the first element of each array and the value is a set of second elements of the array?

So that I get following map?

JavaScript

So far, I found I can classify the first element of each array like this.

JavaScript

Advertisement

Answer

You need a Collectors.mapping (also you don’t need to specify String[] inside)

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement