문제: https://school.programmers.co.kr/learn/courses/30/lessons/86491
# [i[0] for i in sizes] 이 방법 기억하기
def solution(sizes):
answer = 0
for i in range(len(sizes)):
sizes[i] = sorted(sizes[i])
#2차원 리스트에서 0번쨰, 1번쨰만 각각 도출
a = [i[0] for i in sizes]
b = [i[1] for i in sizes]
return max(a) * max(b)
반응형
'공부 서랍장 > 알고리즘 공부' 카테고리의 다른 글
[프로그래머스] 신고 결과 받기 python (0) | 2022.09.18 |
---|---|
[프로그래머스] 이상한 문자 만들기 python (0) | 2022.09.17 |
[프로그래머스] [1차]비밀지도 python (0) | 2022.09.17 |
[프로그래머스] 예산 python (0) | 2022.09.17 |
[프로그래머스] 행렬의 덧셈 python (0) | 2022.09.17 |