#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 n2=0,l=0,u=0,s=0; for(int i=0;i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }