hi, im trying to do the TSORT problem but im receaving only TLE in all my submisions, I've cut my code for only reading the numbers but even with that I get TLE, here is my code:
i = n = input()
s = ""
while i>0:
s += " " + raw_input()
i = i-1
after this i want to map that string to a list of numbers but i can't get it.
do I have to change the way to read the numbers? or there is any mistake in my code. Plsss help im new on this