Given a non-negative integer N, find the largest number that is less than or equal to N with strictly increasing digits.
给一个数字N 找出<=N的最大的严格单调递增的数字 (当输入998时 输出应为789)
刷题网738的原题是monotone increasing 就是输入332时 输出为299
但如果此题变成严格单调递增的话 应该用什么思路呢 我尝试改了几次解法都没通过 求大神帮忙