码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-168周赛-1295-统计位数为偶数的数字

时间:2019-12-25 20:43:12      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:elf   ima   etc   png   pre   numbers   inf   偶数   tco   

题目描述:

技术图片

 

方法一: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-统计位数为偶数的数字

标签:elf   ima   etc   png   pre   numbers   inf   偶数   tco   

原文地址:https://www.cnblogs.com/oldby/p/12098477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!