![JAR search and dependency download from the Maven repository](/logo.png)
g2201_2300.s2235_add_two_integers.Solution.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
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 - 2025 Weber Informatics LLC | Privacy Policy