Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Sorting Employees | Fundamentals and Functional Capabilities of Stream API
Stream API
course content

Course Content

Stream API

Stream API

1. Fundamentals and Functional Capabilities of Stream API
4. Practical Applications of Stream API

book
Challenge: Sorting Employees

Task

Swipe to start coding

Implement a Comparator to sort the list of employees based on the specified criteria.

  1. Sort the employees by years of experience in ascending order, and then apply the reversed() method to make the order descending.
  2. If the years of experience are the same, sort the employees with the same experience by salary in descending order.
  3. If both experience and salary are the same, sort by name in alphabetical order.
  4. Use the created comparator as an argument for the sort() method to sort the employee list.
  5. Print the sorted list of employees.

Solution

java

solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 10
toggle bottom row

book
Challenge: Sorting Employees

Task

Swipe to start coding

Implement a Comparator to sort the list of employees based on the specified criteria.

  1. Sort the employees by years of experience in ascending order, and then apply the reversed() method to make the order descending.
  2. If the years of experience are the same, sort the employees with the same experience by salary in descending order.
  3. If both experience and salary are the same, sort by name in alphabetical order.
  4. Use the created comparator as an argument for the sort() method to sort the employee list.
  5. Print the sorted list of employees.

Solution

java

solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 10
Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
We're sorry to hear that something went wrong. What happened?
some-alt