728x90
https://programmers.co.kr/learn/courses/30/lessons/86491
출처 : 프로그래머스
def solution(sizes):
answer = 0
w = max(max(x) for x in sizes)
h = max(min(x) for x in sizes)
answer = w*h
return answer
'알고리즘 문제 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 문자열 내 마음대로 정렬하기 python (0) | 2022.04.02 |
---|---|
[프로그래머스] 같은 숫자는 싫어 python (0) | 2022.04.02 |
[프로그래머스] 2016년 python (0) | 2022.04.01 |
[프로그래머스] 두 개 뽑아서 더하기 python (0) | 2022.04.01 |
[프로그래머스] 3진법 뒤집기 python (0) | 2022.03.31 |