I want a core java program to find unique elements between two arrays.
Example:
Array1 – 9, 5,3,23,2,5
Array2 – 19, 5,3,23,24,53
output of unique elements from both of the array’s should print as: 9, 2, 19, 24, 53
pls help me to write the program with accurate loops.
NOTE: Dont want to handle the same program using any of the collections and want to be done using only loops. Thanks
You have to use at least 2 loops.