All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g2201_2300.s2235_add_two_integers.Solution Maven / Gradle / Ivy

There is a newer version: 1.35
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy