Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mohapatra-sambit/practice
Practice Exercises
https://github.com/mohapatra-sambit/practice
Last synced: 1 day ago
JSON representation
Practice Exercises
- Host: GitHub
- URL: https://github.com/mohapatra-sambit/practice
- Owner: mohapatra-sambit
- Created: 2023-12-17T04:34:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-31T04:48:21.000Z (about 1 year ago)
- Last Synced: 2024-11-09T23:04:58.492Z (about 2 months ago)
- Language: Java
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Practice
## Java Practice Exercises
1. Given a list of integers, find out all the even numbers that exist in the list using Stream functions?
2. Given a list of integers, find out all the numbers starting with 1 using Stream functions?
3. How to find duplicate elements in a given integers list in java using Stream functions?
4. Given the list of integers, find the first element of the list using Stream functions?
5. Given a list of integers, find the total number of elements present in the list using Stream functions?
6. Given a list of integers, find the maximum value element present in it using Stream functions?
7. Given a String, find the first non-repeated character in it using Stream functions?
8. Given a String, find the first repeated character in it using Stream functions?
9. Given a list of integers, sort all the values present in it using Stream functions?
10. Given a list of integers, sort all the values present in it in descending order using Stream functions?