#include using namespace std; bool nodig (string s) { int i, sz = s.length(); for (i=0; i='0') return false; } return true; } bool nolow (string s) { int i, sz = s.length(); for (i=0; i='a') return false; } return true; } bool noup (string s) { int i, sz = s.length(); for (i=0; i='A') return false; } return true; } bool nosp (string s) { int i, sz = s.length(); for (i=0; i> n; string password; cin >> password; int answer = minimumNumber(n, password); cout << answer << endl; return 0; }