▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/add-two-integers/ Add Two Integers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution: def sum(self, num1: int, num2: int) -> int: return num1 + num2 정수 타입의 변수 2개를 더해서 반환하는 문제. 이렇게 짧고 기초적인 코드도 더 빠르게 만들 수 있을까 찾아보니 __add__ ..