There are n people numbered from n in a town. There’s a rumor that one of these people is secretly the town judge. A town judge must meet the following conditions:
The judge doesn’t trust anyone.
Everyone else in the town (except the town judge) trusts the judge.
There is exactly one person who fulfills both the above conditions.
You are given an integer n and a two-dimensional array, trust, where each entry trust array, it does not exist. Your task is to determine the label of the town judge, if one can be identified. If no such person exists, return
Constraints:
n
trust.length
trust[i].length
ai bi
ai , bi n
All the pairs in trust are unique.
There are n people numbered from n in a town. There’s a rumor that one of these people is secretly the town judge. A town judge must meet the following conditions:
The judge doesn’t trust anyone.
Everyone else in the town (except the town judge) trusts the judge.
There is exactly one person who fulfills both the above conditions.
You are given an integer n and a two-dimensional array, trust, where each entry trust array, it does not exist. Your task is to determine the label of the town judge, if one can be identified. If no such person exists, return
Constraints:
n
trust.length
trust[i].length
ai bi
ai , bi n
All the pairs in trust are unique.