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

leetcode997

时间:2019-02-24 13:31:43      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:return   class   n+1   color   upd   list   find   int   elf   

 1 class Solution:
 2     def findJudge(self, N: int, trust: List[List[int]]) -> int:
 3         if N==1 and len(trust)==0:
 4             return 1
 5         s = list(range(1,N+1))
 6         d = {}
 7         for t in range(len(trust)):
 8             a1 = trust[t][0]
 9             a2 = trust[t][1]
10             if a1 in s:
11                 s.remove(a1)
12             if a2 in d.keys():
13                 d.update({a2:d[a2]+1})
14             else:
15                 d.update({a2:1})
16         if len(s)==1 and s[0] in d.keys() and d[s[0]]==N-1:
17             return s[0]
18         else:
19             return -1

 

leetcode997

标签:return   class   n+1   color   upd   list   find   int   elf   

原文地址:https://www.cnblogs.com/asenyang/p/10425841.html

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