/** * Definition for an interval. * type Interval struct { * Start int * End int * } */ func findRightInterval(intervals []Interval) []int { }