Infrrd interview question

Form a maximum number from given list of integer array.

Interview Answers

Anonymous

9 Aug 2017

Using comparator sort the list...

2

Anonymous

16 Mar 2018

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