Class Solution
-
- All Implemented Interfaces:
public final class Solution
738 - Monotone Increasing Digits.
Medium
An integer has monotone increasing digits if and only if each pair of adjacent digits
x
andy
satisfyx <= y
.Given an integer
n
, return the largest number that is less than or equal ton
with monotone increasing digits.Example 1:
Input: n = 10
Output: 9
Example 2:
Input: n = 1234
Output: 1234
Example 3:
Input: n = 332
Output: 299
Constraints:
<code>0 <= n <= 10<sup>9</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final Integer
monotoneIncreasingDigits(Integer n)
-
-
Method Detail
-
monotoneIncreasingDigits
final Integer monotoneIncreasingDigits(Integer n)
-
-
-
-