Challenge: Sorting Employees
Compito
Swipe to start coding
Implement a Comparator
to sort the list of employees
based on the specified criteria.
- Sort the employees by years of experience in ascending order, and then apply the
reversed()
method to make the order descending. - If the years of experience are the same, sort the employees with the same experience by
salary
in descending order. - If both experience and salary are the same, sort by
name
in alphabetical order. - Use the created comparator as an argument for the
sort()
method to sort the employee list. - Print the sorted list of employees.
Soluzione
solution
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 10