[LeetCode]#2235. Add Two Integers
Oct 3, 2022
Environment: Python 3.8
Key technique:
Given two integers num1
and num2
, return the sum of the two integers.
Example 1:
Input: num1 = 12, num2 = 5
Output: 17
Explanation: num1 is 12, num2 is 5, and their sum is 12 + 5 = 17, so 17 is returned.
Solution:
class Solution:
def sum(self, num1: int, num2: int) -> int:
return num1+num2
Submissions: