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

g0701_0800.s0738_monotone_increasing_digits.Solution Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
package g0701_0800.s0738_monotone_increasing_digits;

// #Medium #Math #Greedy

public class Solution {
    public int monotoneIncreasingDigits(int n) {
        for (int i = 10; n / i > 0; i *= 10) {
            int digit = (n / i) % 10;
            int endnum = n % i;
            int firstendnum = endnum * 10 / i;
            if (digit > firstendnum) {
                n -= endnum + 1;
            }
        }
        return (n);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy