The stub of AccountManager::changePassword() should look like this:
   void AccountManager::changePassword(const string& userName, const string& newPassword) {
   }
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: