top of page
WORD COUNT CONTAINERS
This was an assignment from Paul Cao's CSE 8B course in the fall of 2018. For this assignment, we were given a WordCountContainer.class file that had 4 separate issues. We were then asked to test different edge cases in order to figure out what cases we needed to account for in the coding of our WordCountContainer class. The WordCount object counts how many of the same word is in a text file. A WordCountContainer object can use an ArrayList to format each text file from most used words to least used words. The class can also return the top n words to either the console or a specified text file.
​
​

SKILLS LEARNED...
ArrayList
Test-Driven Development
VIEW CODE HERE...
bottom of page