-
[위클리 챌린지] 8주차알고리즘/프로그래머스 2021. 9. 27. 19:52
https://programmers.co.kr/learn/courses/30/lessons/86491?language=python3
프로그래머스 위클리챌린지 8주차 최소직사각형
def solution(sizes): t1, t2 = [], [] for s in sizes: if s[0] > s[1]: t1.append(s[0]) t2.append(s[1]) else: t2.append(s[0]) t1.append(s[1]) return max(t1)*max(t2)
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[스택/큐] 다리를 지나는 트럭 / 프린터 (0) 2021.10.03 [힙(Heap)] 더 맵게 (0) 2021.10.02 [위클리 챌린지] 7주차 (0) 2021.09.17 [완전탐색] 모의고사 / 소수 찾기 / 카펫 (0) 2021.09.15 [스택/큐] 기능개발 / 주식가격 (0) 2021.09.12