Goldman Sachs interview question

Find the second smallest element in an array.

Interview Answers

Anonymous

31 Jul 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

29 Sept 2019

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

1