[0660] 移除 9
- GitHub
- http://leetcode.xuezhisd.top/post/1cf91076.html
- https://leetcode.com/problems/remove-9
- https://leetcode-cn.com/problems/remove-9
题目描述
从 1 开始,移除所有包含数字 9 的所有整数,例如 9,19,29,……
这样就获得了一个新的整数数列:1,2,3,4,5,6,7,8,10,11,……
给定正整数 n
,请你返回新数列中第 n
个数字是多少。1 是新数列中的第一个数字。
样例 1:
输入: 9 输出: 10
注释 :n 不会超过 9 x 10^8
。
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |