#include using namespace std; bool hh(char c,string s) { for(char x: s) if(x==c) return true; return false; } int minimumNumber(int n, char* p) { // Return the minimum number of characters to make the password strong int nm=0,l=0,u=0,s=0; string numbers = "0123456789"; string lower_case = "abcdefghijklmnopqrstuvwxyz";; string upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";; string special_characters = "!@#$%^&*()-+"; for(int i=0;i