import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { static int minimumNumber(int n, String password) { // Return the minimum number of characters to make the password strong int cdig = 0,csmall = 0,ccaps = 0,cspecial = 0,count = 0; char[] ch = password.toCharArray(); for(int i = 0;i