leetcode-168周赛-1295-统计位数为偶数的数字
Posted 真不知道叫啥好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-168周赛-1295-统计位数为偶数的数字相关的知识,希望对你有一定的参考价值。
题目描述:
方法一:O(N)
class Solution: def findNumbers(self, nums: List[int]) -> int: ans=0 for num in nums: if len(str(num))%2==0: ans+=1 return ans
方法二:数学 O(N)
class Solution: def findNumbers(self, nums: List[int]) -> int: return sum(1 for num in nums if int(math.log10(num) + 1) % 2 == 0)
以上是关于leetcode-168周赛-1295-统计位数为偶数的数字的主要内容,如果未能解决你的问题,请参考以下文章
算法leetcode1295. 统计位数为偶数的数字(多语言实现)
算法leetcode1295. 统计位数为偶数的数字(多语言实现)