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

Kursusindhold

Stream API

Stream API

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

book
Challenge: Sorting Employees

Opgave

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.

Løsning

java

solution

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 10
toggle bottom row

book
Challenge: Sorting Employees

Opgave

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.

Løsning

java

solution

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 10
Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Vi beklager, at noget gik galt. Hvad skete der?
some-alt