Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/deepcloudlabs/stream-api-exercises-part3
Stream API Exercises : Part III
https://github.com/deepcloudlabs/stream-api-exercises-part3
java java-8-lambda java-8-stream java8
Last synced: about 2 months ago
JSON representation
Stream API Exercises : Part III
- Host: GitHub
- URL: https://github.com/deepcloudlabs/stream-api-exercises-part3
- Owner: deepcloudlabs
- License: mit
- Created: 2019-11-24T12:07:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-24T14:59:15.000Z (about 5 years ago)
- Last Synced: 2023-03-03T13:12:41.967Z (almost 2 years ago)
- Topics: java, java-8-lambda, java-8-stream, java8
- Language: Java
- Size: 1000 KB
- Stars: 7
- Watchers: 1
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Stream API Exercises : Part III
In the following exercises you will use a dictionary file: **dictionary.txt**.**Q.1)** Find the words starting with letters **a** to **m**.
**Q.2)** Find the words starting with the letter **n** to the end of the dictionary
**Q.3)** Group the dictionary words by their first three letters
**Q.4)** Find the palindromes in the dictionary. A palindrome is a word, number, phrase, or other
sequence of characters which reads the same backward as forward, such as madam or racecar**Q.5)** Count the vowels used in words.
**Q.6)** Find the words starting with the letter **a**, and ends with the letter **z**.
**Q.7)** Find the longest word in the dictionary
**For Part I** : https://github.com/deepcloudlabs/stream-api-exercises-part1.git
**For Part II** : https://github.com/deepcloudlabs/stream-api-exercises-part2.git