← Back to List

23235번: The Fastest Sorting Algorithm In The World ↗

Solutions

Python 3
117 B | 117 chars
tc = 0
while 1:
  if input() == '0':
    break
  tc +=1

for i in range(tc):
  print(f"Case {i+1}: Sorting... done!")