2545_根据第K场考试的分数排序

func sortTheStudents(score [][]int, k int) [][]int {
    
}
func sortTheStudents(score [][]int, k int) [][]int {
    slices.SortFunc(score, func(a, b []int) int { return b[k] - a[k] })
    return score
}