CHIqueen
[Intro] Sort by Height 본문
def sortByHeight(a):
treeIn = [i for i in range(len(a)) if a[i]==-1]
b = sorted(a)[len(treeIn):]
for i in treeIn:
b.insert(i,-1)
return b
나무가 있는 인덱스를 찾고 정렬한다음에 그만큼 없앴다.
그리고 insert로 그 위치에 넣어줬다.
'프로그래밍 > CodeSignal' 카테고리의 다른 글
[Intro] alternationSums (0) | 2020.03.17 |
---|---|
[Intro] reverseParenthese (0) | 2020.03.11 |
[Intro] isLucky (0) | 2020.03.11 |
[Intro] commonCharacterCount (0) | 2020.03.11 |
[Intro] All Longest Strings (0) | 2020.03.11 |
Comments