Write a method to arrange the numbers in an array to form the largest number possible.
Reversing a number isn't allowed. All the elements of the array are non-negative numbers. Return 0 for an empty array.
Example: getLargestNum("{4, 50, 47, 167}") ==> 50474167