Answers for "how to check if one list contains elements of another list java"

2

how to check if a list contains elements in another list

##Taking examples of two python lists.

##Take examples of two lists.

list1 = [2,4,0,7,6]
list2 = [1,0,9,7,6]

##the statement for condition is.

check = any(element in list2 for element in list1)
Posted by: Guest on July-22-2020
0

java find if element of list in present in another list

list1.stream()
   .map(Object1::getProperty)
   .anyMatch(
     list2.stream()
       .map(Object2::getProperty)
       .collect(toSet())
       ::contains)

// Example with predicate
Predicate<Object> notInList1 = object -> list1.stream().noneMatch(object::equals);
List<Object> missingInList1 = list2.stream().filter(notInList1).collect(Collectors.toList());
Posted by: Guest on February-26-2020

Code answers related to "how to check if one list contains elements of another list java"

Python Answers by Framework

Browse Popular Code Answers by Language