Challenge: Sorting Employees
Завдання
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.
Рішення
solution
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 1. Розділ 10