Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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