Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 323 Bytes

File metadata and controls

14 lines (11 loc) · 323 Bytes

Find the common integer values from two arrays


Instruction

  1. Write a Java program to find common elements between two integer arrays.

Example output

Array one: [1, 2, 5, 5, 8, 9, 7, 10]
Array two: [1, 0, 6, 15, 6, 4, 7, 0]
The following common integers were found:
[1, 7]