java 2 lists intersection code example
Example: get intersection of two lists java
Set<String> result = list.stream() .distinct() .filter(otherList::contains) .collect(Collectors.toSet()); Set<String> commonElements = new HashSet(Arrays.asList("red", "green")); Assert.assertEquals(commonElements, result);