Skip to content

Commit fec23d1

Browse files
Create 2235. Add Two Integers
1 parent af4f7a0 commit fec23d1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python/easy/2235. Add Two Integers

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class Solution:
2+
def sum(self, num1: int, num2: int) -> int:
3+
nums_sum = num1 + num2
4+
return nums_sum

0 commit comments

Comments
 (0)