-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
- Make it clear (add an explanation for) why it is advantageous to use
charsToRemovein the functions.- Add a test that shows that if we exclude the exclamation mark
!and the question mark?from the string that's substituted for thecharsToRemoveparameter, they should be included as part of the returned words: getCleanWordList("input3.txt", ",.?;")returns["Hello!", "Today", "is", "a", "lovely", "day", "isn't", "it"].getCleanWordList("input3.txt", ",.!;")returns["Hello", "Today", "is", "a", "lovely", "day", "isn't", "it?"].getCleanWordList("input3.txt", ",.;")returns["Hello!", "Today", "is", "a", "lovely", "day", "isn't", "it?"].
- Add a test that shows that if we exclude the exclamation mark
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels