Given a list of numbers, sort them and output them one per line from
smallest to largest.
Input Specification
The first line of the input contains a positive integer no greater
than
, the number of numbers to follow.
Each line after will have a single positive integer less than .
Output Specification
Output the numbers in sorted order from smallest to largest, one per line.
Sample Input
4
4
3
2
1
Sample Output
1
2
3
4
Comments
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
Why am I getting WA on the second test case?
You should print duplicate elements.
facepalm
Why I'm I getting this?: Test case #1: IR (✗✗✗✗✗✗✗✗✗✗) [0.019s, 8.28 MB] (0/100) Test case #2: IR (✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗✗) [0.018s, 8.28 MB] (0/200)
This is a line-by-line checker, so you get a checkmark if you get the line correct, and an x if you get the line wrong.
Running your code locally gives the error message
AttributeError: 'int' object has no attribute 'sort'
.This comment is hidden due to too much negative feedback. Click here to view it.
MLE means your solution exceeded the memory limit. Given that the limit is only 16MB for this problem, it may be impossible to pass in certain languages.
This comment is hidden due to too much negative feedback. Click here to view it.
Unfortunately certain languages take more than 16MB even for a simple hello world program :(