employer cover photo
employer logo
employer logo

Eze Software

Part of SS&C

Is this your company?

Eze Software Interview Question

In three very large arrays, calculate a number common to the same array

Interview Answers

Anonymous

Jan 19, 2011

Sort at every iteration, disregard the smallest number

2

Anonymous

Oct 4, 2018

Maintain a hash table, when there is a collision, the common value is found. Space and time O(m+n+o) ,