Domanda di colloquio di Google

Given two arrays, print all common elements

Risposta di colloquio

Anonimo

18 gen 2011

You can sort the shortest array first and for each element of the longest array, find that element in the fist array. When found if it is not marked, then print it and mark it.