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

g2701_2800.s2769_find_the_maximum_achievable_number.Solution Maven / Gradle / Ivy

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

// #Easy #Math #2023_09_21_Time_1_ms_(100.00%)_Space_40.4_MB_(26.03%)

public class Solution {
    public int theMaximumAchievableX(int num, int t) {
        return num + t * 2;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy