using System; using System.Collections.Generic; using System.IO; using System.Linq; class Solution { static string numbers = "0123456789"; static string lower_case = "abcdefghijklmnopqrstuvwxyz"; static string upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; static string special_characters = "!@#$%^&*()-+"; static int minimumNumber(int n, string password) { // Return the minimum number of characters to make the password strong bool hasNumber = false; bool hasLower = false; bool hasUpper = false; bool hasSign = false; int reqC = 6 - n; int req = 0; for(int x=0;x