g2201_2300.s2235_add_two_integers.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g2201_2300.s2235_add_two_integers;
// #Easy #Math #2022_06_10_Time_1_ms_(48.94%)_Space_41_MB_(49.58%)
public class Solution {
public int sum(int num1, int num2) {
return num1 + num2;
}
}