Find the Town Judge
Try to solve the Find the Town Judge problem.
We'll cover the following
Statement
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
a
i
b
i
a
i
,b
i
n
All the pairs in
trust
are unique.
Examples
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.