Turbo Sort - CodeChef Solution

Hello coders, today we will be solving Turbo Sort CodeChef Solution whose Problem code is TSORT. Given the list of numbers, you are to sort them in no

Hello coders, today we will be solving Turbo Sort CodeChef Solution whose Problem code is TSORT.

Turbo Sort CodeChef Solution

Problem

Given the list of numbers, you are to sort them in non decreasing order.

Input

t – the number of numbers in list, then t lines follow [t <= 10^6].

Each line contains one integer: N [0 <= N <= 10^6]

Output

Output given numbers in non decreasing order.

Example

Input:

5
5
3
6
7
1

Output:

1
3
5
6
7

Solution - Turbo Sort CodeChef Solution 

Python3
#Solution Provided by SLoth Coders 
N = int(input())
l = []
for N in range(N):
    l.append(int(input()))
Result = sorted(l)
for R in Result:
    print(R)    

Disclaimer: The above Problem (Turbo Sort) is generated by CodeChef but the Solution is provided by Sloth Coders.

Happy Coding !!

A Sloth Who loves to Code

Also Read:

Sloth Coders is a Learning Platform for Coders, Programmers and Developers to learn from the basics to advance of Coding of different langauges(python, Java, Javascript and many more).

Post a Comment