2024-04-13发表2025-01-15更新LeetCode每日一题几秒读完 (大约75个字)0次访问2924. 找到冠军 II找到冠军 II 难度: medium 原始链接: https://leetcode.cn/problems/find-champion-ii 标签: 图 解法一: 直接遍历go1234567891011121314151617func findChampion(n int, edges [][]int) int { state := make([]bool, n) for _, edge := range edges { state[edge[1]] = true } ans := -1 for i := 0; i < n; i++ { if !state[i] { if ans == -1 { ans = i } else { return -1 } } } return ans}2924. 找到冠军 IIhttps://wuhunyu.top/leetcode/2024/04/find-champion-ii/index.html作者wuhunyu发布于2024-04-13更新于2025-01-15许可协议#图