Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 953 Bytes

README.md

File metadata and controls

40 lines (27 loc) · 953 Bytes

Word Counter App

Counts number of words across files specified as arguments.

Requirements

  • JDK
  • Maven
  • Chrome (for Eclipse Che)

Build the app:

mvn clean install

Example usage:

$ java -jar target/wordcounter-1.0-SNAPSHOT.jar file1 file2 
hello: 10 
world: 5 
example: 3

Task

  • fork the project
  • implement logic to count number of words across files specified as arguments
  • use OOP principles
  • standard java libraries are allowed
  • implement a test
  • commit your work as you proceed through the tasks, we are interested to see your progress
  • once done, send a pull request

Optional