#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 ans=4,cnt=0; for(int j=0;j> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }