From 4cfb70cb14530da601ba1db9d2bf65528fbc4bb8 Mon Sep 17 00:00:00 2001 From: AymarN Date: Sat, 26 Oct 2019 03:04:44 +0700 Subject: [PATCH] alteration on Readme --- Week2/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Week2/README.md b/Week2/README.md index a18080d..7e1759a 100644 --- a/Week2/README.md +++ b/Week2/README.md @@ -1,6 +1,7 @@ [Telling a Random Story] Assignment 1: Most Frequent Word +[Most frequent Word] You will write a program to determine the word that occurs the most often in a file. If more than one word occurs as the most often, then return the first such word found. You should make all words lowercase before counting them. Thus, “This” and “this” will both be counted as the lowercase version of “this”. You should not consider punctuation, so “end” and “end,” will be considered different words. Use the WordFrequencies program in the lesson as a starting point. @@ -174,7 +175,7 @@ Note: The convention for text files is to end with a line break, so the above DN Assignment 2: Words in Files -[Most frequent Word] +[WordInFiles] Write a program to determine which words occur in the greatest number of files, and for each word, which files they occur in.