Leetcode 2383 Solution
This article provides solution to leetcode question 2383 (add-two-integers)
Access this page by simply typing in "lcs 2383" in your browser address bar if you have bunnylol configured.
Leetcode Question Link
https://leetcode.com/problems/add-two-integers
Solution
class Solution:
def sum(self, num1: int, num2: int) -> int:
return num1 + num2