#include using namespace std; int minimumNumber(int n, string password) { // Return the minimum number of characters to make the password strong string numbers = "0123456789"; string lower_case = "abcdefghijklmnopqrstuvwxyz"; string upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string special_characters = "!@#$%^&*()-+"; int result=0; bool num=false,low=false,upp=false,spec=false; for(int i=0;i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }