Pergunta de entrevista da empresa Radware

1st interview: The classic two-sum question. write a function that receive an array of integers and a target value, and returns the indexes i,j such that array[i] + array[j] = target(if they're exist)

Resposta da entrevista

Sigiloso

26 de dez. de 2019

O(n) solution using hash-map