The stub of AccountManager::deleteAccount() should look like this:
   void AccountManager::deleteAccount(const string& userName) {
   }
This method should behave as follows:
  1. Use myAccounts.find() to get an iterator it pointing to the pair containing userName and its password.
  2. If it is different from myAccounts.end():
  3. Otherwise: