Leetcode 2092: Find All People With Secret
In this problem, we are given a set of persons and meetings between people at fixed time, some people know a secret and they are revealing it at each of their meeting. When a person knows a secret, they will reveal it at each of their subsequent meetings. We need to return the set of persons who know the secret at the end of all meetings.
You are given an integer
n
indicating there aren
people numbered from0
ton - 1
. You are also given a 0-indexed 2D integer arraymeetings
wheremeetings[i] = [xi, yi, timei]
indicates that personxi
and personyi
have a…