1291. Sequential Digits

1291. Sequential Digits

python 复制代码
class Solution:
    def sequentialDigits(self, low: int, high: int) -> List[int]:
        ans=[]
        for i in range(1,10):
            num=i
            nt_digit=i+1
            while num<high and nt_digit<=9:
                num=num*10+nt_digit
                if low<=num and num<=high:
                    ans.append(num)
                nt_digit+=1
        return sorted(ans)

模拟

相关推荐
浩少7023 小时前
LeetCode-22day:多维动态规划
算法·leetcode·动态规划
岁月静好20253 小时前
Leetcode 深度优先搜索 (15)
算法·leetcode·深度优先
凤年徐4 小时前
【数据结构与算法】LeetCode 20.有效的括号
c语言·数据结构·算法·leetcode
凤年徐8 小时前
【数据结构】LeetCode160.相交链表 138.随即链表复制 牛客——链表回文问题
c语言·数据结构·c++·算法·leetcode·链表
元亓亓亓9 小时前
LeetCode热题100--98. 验证二叉搜索树--中等
算法·leetcode·职场和发展
拒绝摆烂10 小时前
LeetCode Hot 100 第7天
算法·leetcode·哈希算法
一起努力啊~11 小时前
算法题打卡力扣第15题:三数之和(mid)
算法·leetcode·职场和发展
快去睡觉~11 小时前
力扣18:四数之和
算法·leetcode·深度优先
岁忧1 天前
(LeetCode 每日一题) 498. 对角线遍历 (矩阵、模拟)
java·c++·算法·leetcode·矩阵·go
Greedy Alg1 天前
LeetCode 560. 和为 K 的子数组
算法·leetcode·职场和发展