#include #include using namespace std; int check(char c) { int res=0; string numbers = "0123456789"; string lower_case = "abcdefghijklmnopqrstuvwxyz"; string upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string special_characters = "!@#$%^&*()-+"; for(size_t i=0; i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }