Medium
There are n teams labeled 0..n-1 in a tournament. Each directed edge [u, v] means team u is stronger than team v. A team is the champion if no other team is stronger than it. Return the label of the unique champion, or -1 if it is not unique.
Input: n = 3, edges = [[0,1],[1,2]] Output: 0
Input: n = 2, edges = [[0,1],[1,0]] Output: -1