Files
leetcode/2235-add-two-integers/2235-add-two-integers.py
T

8 lines
173 B
Python

class Solution(object):
def sum(self, num1, num2):
"""
:type num1: int
:type num2: int
:rtype: int
"""
return num1 + num2