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

g2201_2300.s2235_add_two_integers.Solution.kt Maven / Gradle / Ivy

There is a newer version: 1.28
Show newest version
package g2201_2300.s2235_add_two_integers

// #Easy #Math #2023_06_27_Time_131_ms_(65.81%)_Space_33.3_MB_(68.80%)

class Solution {
    fun sum(num1: Int, num2: Int): Int {
        return num1 + num2
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy