Goldman Sachs Interview Question

Find the second smallest element in an array.

Interview Answers

Anonymous

Jul 31, 2018

Went with two variables which mainted the current least two elements and then returned the second lease. Took care of edge cases like <2 elements.

1

Anonymous

Sep 29, 2019

Arrays.sort(arr); arr[length-1] would do this

1