Skip to content
Advertisement

How to compare two maps with different values using the Stream API? [closed]

There are two maps and a method that accepts them and returns a new map. Maps contain the same number of the same keys, but their values ​​are different.

JavaScript

The method finds the same keys and writes the key and the different value of the second map to the new map

The result of the method will be a map with elements : “a” : true “c” : false

How can I reduce the amount of code by replacing loops and conditions with Stream API and lambda expressions?

Advertisement

Answer

If it’s OK to modify the original b, you don’t need a stream operation, EDIT: just use removeAll() (and if it isn’t OK, you may make a copy first).

JavaScript

Output is what you said you wanted:

{a=true, c=false}

Thanks to Eritrean for suggesting removeAll rather than removeIf, an obvious improvement.

If you need to make a copy in order not to modify the original b, I suggest

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