Pergunta de entrevista da empresa Google

Given two arrays, print all common elements

Resposta da entrevista

Sigiloso

18 de jan. de 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.