Use the programming interface to complete this task.
Input: A list of numbers, separated by commas. Ex: 3,28,9,17,5
Output: The list sorted from largest to smallest, separated by commas. Ex: 28,17,9,5,3
Read the input from a file called sorting-job.in
that's in the current working directory, and then write your output to a file called sorting-job.out
.
I wonder if there is a handy sort function for this?
None yet!