Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,860 questions

51,781 answers

573 users

How to find the common elements between two arrays in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        Integer arr1[] = {1, 2, 3, 4, 5, 15}; 
        Integer arr2[] = {6, 7, 8, 5, 9, 0, 2, 99}; 
     
        for (int i = 0; i < arr1.length; i++) {
            for (int j = 0; j < arr2.length; j++) {
                if (arr1[i] == arr2[j]) {
                  System.out.println("Common element: " + arr1[i]);
                }
            }
        }
    }
}
  
  
  
/*
run:
  
Common element: 2
Common element: 5
  
*/

 



answered Aug 18, 2021 by avibootz

Related questions

1 answer 128 views
1 answer 111 views
1 answer 124 views
1 answer 110 views
2 answers 1,082 views
3 answers 207 views
...