This commit is contained in:
2023-09-22 09:41:53 -04:00
parent 0454a29f27
commit 4d75bca7c1
14 changed files with 561 additions and 0 deletions

16
7-word-count/README.md Normal file
View File

@ -0,0 +1,16 @@
File Word Count
================
Write a program that takes a filename and a parameter `n` and prints the `n` most common words in the file, and the count of their occurrences, in descending order.
For example:
word_stats("article.txt", 5)
"the", 39
"device", 21
"start", 14
"pidgeon", 9
"box", 3
Import the included `article.txt` file and use that to test your program. What are the top 10 words and their frequency?