나는 이렇게 학습한다/Algorithm & SQL

1009. Surface Area and Volume of a Box

daco2020 2022. 10. 10. 00:07
반응형

Write a function that returns the total surface area and volume of a box as an array:

[area, volume]


Solution:

def get_size(w,h,d):
    wh = w*h*2
    hd = h*d*2
    wd = w*d*2
    return [wh+hd+wd, w*h*d]


반응형

'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글

1011. Square(n) Sum  (0) 2022.10.11
1010. Double Char  (0) 2022.10.10
1008. Drink about  (0) 2022.10.08
1007. Volume of a Cuboid  (0) 2022.10.08
1006. Filter out the geese  (0) 2022.10.06