t = int(input())
for tc in range(1,t+1):
n = int(input())
lst = list(map(int,input().split()))
lst.sort()
print(f'#{tc}',*lst)
'문제풀이 > SW Expert Academy' 카테고리의 다른 글
[SWEA][D2] 1959. 두 개의 숫자열 (파이썬/Python) (0) | 2021.09.03 |
---|---|
[SWEA][D2] 1961. 숫자 배열 회전 (파이썬/Python) (0) | 2021.09.02 |
[SWEA][D2] 1970. 쉬운 거스름돈 (파이썬/Python) (0) | 2021.09.02 |
[SWEA][D2] 1974. 스도쿠 검증 (파이썬/Python) (0) | 2021.09.01 |
[SWEA][D2] 1979. 어디에 단어가 들어갈 수 있을까 (파이썬/Python) (0) | 2021.09.01 |