sort()를 활용하여 문제를 풀었다
T = int(input()) for tc in range(1,T+1): num = int(input()) a = list(map(int,input().split())) a.sort() print(f'#{tc}', *a)