Removed unnecessary headers

This commit is contained in:
2020-08-28 14:26:09 -04:00
parent a797bb6718
commit 3757e2169c
27 changed files with 15 additions and 31 deletions

View File

@@ -40,8 +40,7 @@ private:
uint64_t letterCount; //This is the cumulative number of letters in the words of the numbers
//Functions
std::string makeWord(int num); //This function makes a word out of the number passed into it
std::string wordHelper(int num); //This function helps makeWord() by returning the words for the numbers 1-9
std::string makeWordFromNum(int number); //This function makes a word out of the number passed into it
uint64_t countLetters(std::string str); //This counts the number of letters in the string that is passed in (ignoring numbers and punctuation)
public:
//Constructor