0317 TIL

looggi·2023년 3월 17일
3

TILs

목록 보기
38/114
post-thumbnail

빽준 문제풀기

➡️ 수열 정렬

n=int(input())
network=list(map(int,input().split()))
idx=sorted(network)

ans=[]
for i,net in enumerate(network):
    ans.append(idx.index(net))
    idx[idx.index(net)]=0
print(*ans)

비내림차순도 결국 오름차순과 같이 정렬하면 돼서 sorted를 사용해서 정렬 후 인덱스를 프린트했다

가장 중요한 건 출력시 리스트를 언패킹해야 한다는 것⭐

profile
looooggi

0개의 댓글