Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 864 Bytes

README.md

File metadata and controls

21 lines (12 loc) · 864 Bytes

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