Skip to content

Latest commit

 

History

History

strings

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

String Processor

Implement a string processor that allows to do operations with strings.

Acceptance Criteria

countVowels

  • if vowels exist should return the number of vowels.
  • if vowels don't exist should return 0.
  • if string is empty should throw EmptyStringException.

Uses