employer cover photo
employer logo
employer logo

QUANTITATIVE BROKERS

Is this your company?

QUANTITATIVE BROKERS interview question

For an unsorted array of integers in a given range, find the smallest missing positive integer

Interview Answer

Anonymous

9 Oct 2020

register every number in the array on a ledger array using some hash then find which number in range given is missing, O(n) time and O(1) space.

1