Solution: Find the Town Judge
Explore how to determine the town judge by applying graph theory concepts such as indegree and outdegree arrays. Learn to identify the person trusted by everyone but who trusts no one, and implement an efficient JavaScript solution for this problem leveraging trust relationships as directed graph edges.
We'll cover the following...
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. ...