2235. Add Two Integers

🟩 Easy

Solution

My Solution

func sum(num1 int, num2 int) int {
    return num1+num2
}
result

Leetcode: link

Last updated

Was this helpful?