2020년/코테
[코테 연습] Pancake Sorting
문제 https://leetcode.com/explore/challenge/card/august-leetcoding-challenge/553/week-5-august-29th-august-31st/3441/ 코드를 아래와 같이 작성하긴 했으나, 문제에서 원한게 아니였던 것 같음 1. 가장 큰 숫자를 (fix안된 * fix되었다는것은 자기자리에 있다) 맨앞으로 보냄 2. fix 안된 숫자안에서 reverse함 반복 class Solution: def listSwap(self,list,idx1,idx2): list[idx1],list[idx2] = list[idx2],list[idx1] return list def pancakeSort(self, A: List[int]) -> List[int]: res = ..
2020. 8. 31. 12:10