Infrrd interview question

Form a maximum number from given list of integer array.

Interview Answers

Anonymous

Aug 9, 2017

Using comparator sort the list...

2

Anonymous

Mar 16, 2018

Sort the array in descending order and then just form the number using sorted array. Simple.