How to check if two arrays have no common elements in Java

1 Answer

0 votes
import java.util.*; 
 
public class MyClass {
    public static void main(String args[]) {
        Integer arr1[] = {1, 2, 3, 4, 5}; 
        Integer arr2[] = {6, 7, 8, 9, 0}; 
    
        System.out.println(Collections.disjoint(Arrays.asList(arr1), Arrays.asList(arr2))); 
    }
}
 
 
 
/*
run:
 
true
 
*/

 



answered May 28, 2020 by avibootz

Related questions

1 answer 207 views
1 answer 140 views
1 answer 121 views
1 answer 145 views
1 answer 144 views
1 answer 232 views
1 answer 147 views
...