Find the duplicated elements of two arrays.
Anonymous
Use hash table. - insert a dummy element to the hash table using the values in the first array as key. - try to retrieve from the hash table with the values in the second array as key. ----- if there is a hit, the value used as the key is the answer
Check out your Company Bowl for anonymous work chats.