Files
Firas Khalil Khana 27c12b9b58 Capitalize i
2021-06-08 11:19:26 +03:00
..
2021-06-08 11:19:26 +03:00
2021-06-08 11:19:26 +03:00
2019-10-30 19:41:13 +03:00
2021-06-08 11:19:26 +03:00
2019-10-30 19:41:13 +03:00
2019-10-30 19:41:13 +03:00
2019-06-21 15:33:20 +03:00

Exercises

Let's exercise with the scanner and maps.

  1. Uppercaser

Use a scanner to convert the lines to uppercase, and print them.

  1. Unique Words

Create a program that counts the unique words from an input stream.

  1. Unique Words 2

Enhance the previous exercise: Before adding the words to your map, remove the punctuation characters and numbers from them.

  1. Grep Clone

Create a grep clone. grep is a command-line utility for searching plain-text data for lines that match a specific pattern.

  1. Quit

Create a program that quits when a user types the same word twice.

  1. Create the Log Parser program from scratch

You've watched the lecture. Now, try to create the same log parser program on your own. Do not look at the lecture, and the existing source code. The link contains the code where you need to start working on.