题解 | #数组中重复的数字#

数组中重复的数字

http://www.nowcoder.com/practice/6fe361ede7e54db1b84adc81d09d8524

step1: 借助collections的模块进行处理 step2: 遍历collections.Counter的结果

import collections
class Solution:
    def duplicate(self , numbers ):
        if not numbers:
            return -1
        # write code here
        result_dict = collections.Counter(numbers)
        # traverse the dict
        for key,val in result_dict.items():
            if val>1:
                return key
全部评论

相关推荐

01-12 17:45
门头沟学院 Java
985废物一枚:就是问问你能不能接受北京的房租,hr也知道公司工资不高,大概率是要贴钱的
找实习记录
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务