#include using namespace std; bool isspecial(char ch) { switch(ch) { case '!': case '@': case '#': case '$': case '%': case '^': case '&': case '*': case '(': case ')': case '-': case '+': return true; break; default: return false; } } int minimumNumber(int n, string s) { bool digit=false,lc=false,uc=false,sc=false; for(int i=0;i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }