update: log parser dir to input scanning

This commit is contained in:
Inanc Gumus
2019-05-05 18:23:52 +03:00
parent 1f4776b143
commit a40dc5b0a9
22 changed files with 56 additions and 10 deletions

View File

@@ -0,0 +1,29 @@
// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package main
// ---------------------------------------------------------
// EXERCISE: Unique Words
//
// Create a program that counts the unique words from an
// input stream.
//
// 1. Feed the shakespeare.txt to your program.
//
// 2. Scan the input using a new Scanner.
//
// 3. Configure the scanner to scan for the words.
//
// 4. Count the unique words using a map.
//
// EXPECTED OUTPUT
// There are 99 words, 70 of them are unique.
// ---------------------------------------------------------
func main() {
}