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