• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

[Swift]LeetCode1215.步进数|SteppingNumbers

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(let_us_code)
➤博主域名:https://www.zengqiang.org
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

Stepping Number is an integer such that all of its adjacent digits have an absolute difference of exactly 1. For example, 321 is a Stepping Number while 421 is not.

Given two integers low and high, find and return a sorted list of all the Stepping Numbers in the range [low, high] inclusive.

 

Example 1:

Input: low = 0, high = 21
Output: [0,1,2,3,4,5,6,7,8,9,10,12,21]

 

Constraints:

  • 0 <= low <= high <= 2 * 10^9

如果一个整数上的每一位数字与其相邻位上的数字的绝对差都是 1,那么这个数就是一个「步进数」。

例如,321 是一个步进数,而 421 不是。

给你两个整数,low 和 high,请你找出在 [low, high] 范围内的所有步进数,并返回 排序后 的结果。

 

示例:

输入:low = 0, high = 21
输出:[0,1,2,3,4,5,6,7,8,9,10,12,21]

 

提示:

  • 0 <= low <= high <= 2 * 10^9

Runtime: 152 ms
Memory Usage: 22.3 MB
 1 class Solution {
 2     var L:Int = 0
 3     var S:[Int] = [Int]()
 4     
 5     func countSteppingNumbers(_ low: Int, _ high: Int) -> [Int] {
 6         self.L = high
 7         var ans:[Int] = [Int]()
 8         for i in 1...9
 9         {
10             search(i)
11         }
12         if 0 >= low && 0 <= high
13         {
14             ans.append(0)
15         }
16         for i in S
17         {
18             if i >= low && i <= high
19             {
20                 ans.append(i)
21             }
22         }
23         ans.sort()
24         return ans
25     }
26     
27     func search(_ x:Int)
28     {
29         if x > L{return}
30         S.append(x)
31         let last:Int = x % 10
32         if last != 0
33         {
34             search(x * 10 + last - 1)
35         }
36         if last != 9
37         {
38             search(x * 10 + last + 1)
39         }
40     }  
41 }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Swift3迁移工作总结发布时间:2022-07-13
下一篇:
[Swift]LeetCode1320.二指输入的的最小距离|MinimumDistancetoTypeaWordUsingTwoFinge ...发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap