#include using namespace std; int minimumNumber(int n, string password) { // Return the minimum number of characters to make the password strong int req=4; for(int i=0; i='a'&& password[i]<='z') {--req; break;} for(int i=0; i='A'&& password[i]<='Z') {--req; break;} for(int i=0; i='0'&& password[i]<='9') {--req; break;} string special = "!@#$%^&*()-+"; for(int i=0; i