The task is to sort a given sequence of numbers in a non-decreasing order. |
The first one at the input is the length of the sequence 1 ≤ N ≤ 10,000. Next, the string in the form of N numbers between 0 and 2,000,000 is given. |
1 ≤ N ≤ 10,000
This part tells you that the array's size is 10,000. Where as the first number entered is the part of the 10,000 that is actually used.
|
|