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

数组中重复的数字

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

相关推荐

03-04 19:02
云南大学 Java
Yki_:没挂,只是没人捞,该干啥干啥,等着就好了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务