10000 Add Solution Python · qilingit/Leetcode@d4b2203 · GitHub
[go: up one dir, main page]

Skip to content

Commit d4b2203

Browse files
Add Solution Python
1 parent 41ae87d commit d4b2203

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

May-LeetCoding-Challenge/10-Find-The-Town-Judge/Find-The-Town-Judge.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def findJudge(self, N: int, trust: List[List[int]]) -> int:
77
return -1
88
croire = dict() # counting persons that each trusts
99
for x in trust:
10-
#print(x[0],x[1])
1110
if x[0] not in croire:
1211
croire[x[0]] = set([x[1]])
1312
else:

0 commit comments

Comments
 (0)
0