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

g2701_2800.s2769_find_the_maximum_achievable_number.Solution.kt Maven / Gradle / Ivy

There is a newer version: 1.30
Show newest version
package g2701_2800.s2769_find_the_maximum_achievable_number

// #Easy #Math #2023_08_11_Time_134_ms_(97.89%)_Space_33.8_MB_(81.05%)

class Solution {
    fun theMaximumAchievableX(num: Int, t: Int): Int {
        return num + t * 2
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy