website/content.en/ChapterFour/0900~0999/0997.Find-the-Town-Judge.md
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:
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:
There are n people in a town, labeled from 1 to n. There is a rumor that one of these people is secretly the town judge.
If the town judge really exists, then:
You are given an array trust, where trust[i] = [ai, bi] means that the person labeled ai trusts the person labeled bi.
If the town judge exists and their identity can be determined, return the judge's label; otherwise, return -1.
Count in-degrees and out-degrees
package leetcode
func findJudge(n int, trust [][]int) int {
if n == 1 && len(trust) == 0 {
return 1
}
judges := make(map[int]int)
for _, v := range trust {
judges[v[1]] += 1
}
for _, v := range trust {
if _, ok := judges[v[0]]; ok {
delete(judges, v[0])
}
}
for k, v := range judges {
if v == n-1 {
return k
}
}
return -1
}