33일차

Dzeko·2021년 8월 14일
0

--------------------------------------------🤞 My Solution -------------------------------------------

def wrap(height, width, length):
    arr = [height, width, length]
    first = max(arr)
    arr.remove(first)
    second = max(arr)
    arr.remove(second)
    third = arr[0]
    total = first * 2 + second * 2 + third * 4 + 20
    return total
profile
Do or Die

0개의 댓글