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

数组中重复的数字

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
全部评论

相关推荐

07-01 19:00
门头沟学院 Java
点赞 评论 收藏
分享
05-20 13:59
门头沟学院 Java
米黑子米黑子:你这个成绩不争取下保研?
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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