Examples

Example 1

Given an array, arr, of n real number strings. Task is to sort them in descending order. Note that each number must be printed in the exact same format as it is given in input, meaning that .1 is printed as .1, and 0.1 is printed as 0.1. If two numbers represent numerically equivalent values (e.g. .1 is equivalent to 0.1), then they must be listed in the same order as they were received in the input).

1 <= n <= 300

Each element of arr has atmost 250 digits.

 Sample Input
 9
 -101
 50
 0
 55.6
 90
 0.13
 .13
 01.34
 000.000

Sample Output
 90
 55.6
 50
 01.34
 0.13
 .13
 0
 000.000
 -101

Last updated