Let's say we have a class Student with the name and grade properties:
data class Student(val name: String, val grade: Int) : Comparable<Student> { }
Write a compareTo () method to sort the list of students by grade in descending order if the grade list is sorted alphabetically by name.