leetcode1291
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode1291相关的知识,希望对你有一定的参考价值。
1 class Solution: 2 def sequentialDigits(self, low: int, high: int) -> ‘List[int]‘: 3 lists = [‘1‘,‘2‘,‘3‘,‘4‘,‘5‘,‘6‘,‘7‘,‘8‘,‘9‘] 4 res = [] 5 for i in range(9): 6 for length in range(1,10): 7 j = i + length 8 sub = ‘‘.join(lists[i:j]) 9 integer = int(sub) 10 if integer >= low and integer <= high: 11 res.append(integer) 12 elif integer > high: 13 break 14 if j >= 9: 15 break 16 res.sort() 17 return res
按照从小到大的顺序生成递增序列,每生成一个序列,判断是否在限定区间内。
如果超过了区间的上限,则跳过本轮循环(因为后面的值会更大)。
以上是关于leetcode1291的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段