[0233] 数字 1 的个数
- GitHub
- http://leetcode.xuezhisd.top/post/5dab5d8b.html
- https://leetcode.com/problems/number-of-digit-one
- https://leetcode-cn.com/problems/number-of-digit-one
题目描述
给定一个整数 n,计算所有小于等于 n 的非负整数中数字 1 出现的个数。
示例:
输入: 13 输出: 6 解释: 数字 1 出现在以下数字中: 1, 10, 11, 12, 13 。
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |