Published:
Updated:

  • ์ „๊ฐ€์‚ฐ๊ธฐ ๊ตฌํ˜„ ๋ฌธ์ œ
    • ๋ฏธ๋””์›€์ด ์•„๋‹ˆ๋ผ ํ•˜๋“œ ๊ฐ™์Œ..
    • ์ดํ•ด ๋„ˆ๋ฌด ํž˜๋“ค์–ด์„œ ๊ทธ๋ƒฅ sum() ์ผ์Œ..


SolutionPermalink

class Solution:
    def getSum(self, a: int, b: int) -> int:
        return sum([a, b])


ReferencePermalink

Leave a comment