Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 789 Bytes

File metadata and controls

42 lines (24 loc) · 789 Bytes

English Version

题目描述

给定一个整数 n,计算所有小于等于 n 的非负整数中数字 1 出现的个数。

示例:

输入: 13
输出: 6 
解释: 数字 1 出现在以下数字中: 1, 10, 11, 12, 13 。

解法

Python3

Java

...