1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/go/find-center-of-star-graph.go

12 lines
169 B
Go
Raw Normal View History

package main
func findCenter(edges [][]int) int {
u, v := edges[0][0], edges[0][1]
s, t := edges[1][0], edges[1][1]
if u == s || u == t {
return u
}
return v
}