Morgan Stanley interview question

Phone Screen: Check if two elements in an array equal to a sum or not?

Interview Answer

Anonymous

12 Nov 2018

I solved it using HashSet to store complements of each number. If current number already exists in an HashSet that means we can form the sum

7