-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFindTheTownJudge.py
59 lines (53 loc) · 1.6 KB
/
FindTheTownJudge.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Source : https://leetcode.com/problems/find-the-town-judge
# Author : Hamza Mogni
# Date : 2022-01-20
#####################################################################################################
#
# In a town, there are n people labeled from 1 to n. There is a rumor that one of these people is
# secretly the town judge.
#
# If the town judge exists, then:
#
# The town judge trusts nobody.
# Everybody (except for the town judge) trusts the town judge.
# There is exactly one person that satisfies properties 1 and 2.
#
# You are given an array trust where trust[i] = [ai, bi] representing that the person labeled ai
# trusts the person labeled bi.
#
# Return the label of the town judge if the town judge exists and can be identified, or return -1
# otherwise.
#
# Example 1:
#
# Input: n = 2, trust = [[1,2]]
# Output: 2
#
# Example 2:
#
# Input: n = 3, trust = [[1,3],[2,3]]
# Output: 3
#
# Example 3:
#
# Input: n = 3, trust = [[1,3],[2,3],[3,1]]
# Output: -1
#
# Constraints:
#
# 1 <= n <= 1000
# 0 <= trust.length <= 10^4
# trust[i].length == 2
# All the pairs of trust are unique.
# ai != bi
# 1 <= ai, bi <= n
#####################################################################################################
class Solution:
def findJudge(self, n: int, trust) -> int:
trusting = set([person[0] for person in trust])
suspected_judge = ((n*(n+1))//2) - sum(trusting)
people_trusting_judge = set(
person for person in trust if person[1] == suspected_judge)
if len(people_trusting_judge) == n-1:
return suspected_judge
return -1