Given two int arrays. Find out common numbers and different numbers.
Sigiloso
Scan the first array , store them in hashset, scan the second array , check if the number is present in the set (which is o(1) complexity) if it is then its a common number and if its not then its a different number.