https://school.programmers.co.kr/learn/courses/30/lessons/86491
def solution(sizes):
max_0 = -float('inf')
max_1 = -float('inf')
for size in sizes:
if size[0] < size[1]:
size[0], size[1] = size[1], size[0]
if size[0] > max_0:
max_0 = size[0]
if size[1] > max_1:
max_1 = size[1]
return max_0*max_1
'Coding Test > 프로그래머스' 카테고리의 다른 글
[Level 1] / [Python] K번째 수 (0) | 2022.10.14 |
---|---|
[Level 1] / [Python] 문자열 내 마음대로 정렬하기 (0) | 2022.10.14 |
[Level 1] / [Python] [1차] 비밀지도 (0) | 2022.10.14 |
[Level 1] / [Python] 시저 암호 (0) | 2022.10.14 |
[Level 1] / [Python] 예산 (0) | 2022.10.14 |