Leetcode之2出现的次数
题目:编写一个方法,计算从 0 到 n (含 n) 中数字 2 出现的次数。示例:输入: 25输出: 9解释: (2, 12, 20, 21, 22, 23, 24, 25)(注意 22 应该算作两次)提示:n <= 10^9代码:class Solution: def numberOf2sInRange(self, n: int) -> int: s= str(n) x= 2 count = 0