mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
8 lines
173 B
Python
8 lines
173 B
Python
class Solution(object):
|
|
def sum(self, num1, num2):
|
|
"""
|
|
:type num1: int
|
|
:type num2: int
|
|
:rtype: int
|
|
"""
|
|
return num1 + num2 |