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

数组中重复的数字

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

相关推荐

陆续:不可思议 竟然没那就话 那就我来吧 :你是我在牛客见到的最美的女孩
点赞 评论 收藏
分享
Rena1ssanc...:对的,要是面评没太烂,勤更新简历等捞就行了,腾讯可以无限复活
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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