Problem

1/7

Quicksort: Start (C++)

Theory Click to read/hide

Error

Problem

Given N (1 <= N <= 100000) followed by N natural numbers from 1 to < code>100. Print N numbers in non-decreasing order.
 
Examples
# Input Output
1
5
3 1 2 4 2
1 2 2 3 4