Thursday, May 5, 2022

Question 19: Given a list of integers, sort all the values present in it in descending order using Stream functions?


import java.util.*; import java.util.stream.*; import java.util.function.Function; public class JavaHungry { public static void main(String args[]) { List<Integer> myList = Arrays.asList(10,15,8,49,25,98,98,32,15); myList.stream() .sorted(Collections.reverseOrder()) .forEach(System.out::println); } }


Output:
98
98
49
32
25
15
15
10
8

Don't miss the next article! 
 
Be the first to be notified when a new article or Kubernetes experiment is published.                            

   Share This

You may also like

Kubernetes Microservices
Python AI/ML
Spring Framework Spring Boot
Core Java Java Coding Question
Maven AWS