[SOLVED] Does anyone know why my code is failing the test cases 10 and 11 (password validation) | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 2

[SOLVED] Does anyone know why my code is failing the test cases 10 and 11 (password validation)

Does anyone know why the code is failing test cases #10/11 or what their input is? import java.util.Scanner; public class Program { public static void main(String[] args) { int numberOfSpecialLetters = 0; int numberOfNumbers = 0; String[] specialLetters = { "!", "@", "#", "

quot;, "%", "&", "*" }; String[] numbers = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" }; Scanner in = new Scanner(System.in); String password = in.nextLine(); int length = password.length(); for (String specialLetter : specialLetters) { if (password.contains(specialLetter)) { numberOfSpecialLetters++; } } for (String number : numbers) { if (password.contains(number)) { numberOfNumbers++; } } if (numberOfSpecialLetters >= 2 && numberOfNumbers >= 2 && length >= 7) { System.out.println("Strong"); } else { System.out.println("Weak"); } } }

13th Jun 2021, 1:45 PM
Markus Gebhard
Markus Gebhard - avatar
12 Respuestas
+ 2
Check out this 👇 import java.util.Scanner; public class Program { public static void main(String[] args) { String password; int count1=0; int count2=0; Scanner s = new Scanner(System.in); password=s.nextLine(); for(int x=0;x<=(password.length()-1);x++) { Boolean number=Character.isDigit(password.charAt(x)); if(number) { count1++; } else { Boolean Letter=Character.isLetter(password.charAt(x)); if(Letter) { } else { count2++; } } } if((password.length() >= 7) && (count1 >= 2) && (count2 > 0)) { System.out.println("Strong"); } else { System.out.println("Weak"); } } }
14th Jun 2021, 1:57 PM
Tharul Nejana
Tharul Nejana - avatar
0
Quantum There must be a test case but may not have other constrains satisfies I think. Yes. It output Weak but it is a Strong valid password according to description. It should output Strong. Ok.Let wait for OP response, for his changes in code .
13th Jun 2021, 5:13 PM
Jayakrishna 🇮🇳
0
Jayakrishna🇮🇳 was right. It the code checked only once for every special character or number. Instead of checking the password as string against a string array of special signs and numbers, I reversed it and turned the password into a string array and had a string each of special signs and numbers checked against it in the for each loop. Thank you for your help guys! import java.util.Arrays; import java.util.Scanner; public class PasswordValidation { public static void main(String[] args) { int numberOfSpecialLetters = 0; int numberOfNumbers = 0; String specialLetters = "!@#$%&*"; String neededNumbers = "0123456789"; Scanner in = new Scanner(System.in); String password = in.nextLine(); int length = password.length(); String[] passwordAsString = password.split(""); for (String specialLetter : passwordAsString) { if (specialLetters.contains(specialLetter)) { numberOfSpecialLetters++; } } for (String number : passwordAsString) { if (neededNumbers.contains(number)) { numberOfNumbers++; } } if (numberOfSpecialLetters >= 2 && numberOfNumbers >= 2 && length >= 7) { System.out.println("Strong"); } else { System.out.println("Weak"); } } }
14th Jun 2021, 12:09 AM
Markus Gebhard
Markus Gebhard - avatar
0
Markus Gebhard yes. Reversed way will be the correct solution to get it right. hope it solved. You're welcome...
14th Jun 2021, 12:08 PM
Jayakrishna 🇮🇳
0
Quantum, the code passed all test cases. >=7 is correct
14th Jun 2021, 12:23 PM
Markus Gebhard
Markus Gebhard - avatar
0
import java.util.Scanner ; import java.io.*; public class Program { public static void main(String[] args) { Scanner input=new Scanner(System.in); String str=input.nextLine(); int n=0; int s=0; int l=0; for(int i=0;i<str.length();i++){ if(Character .isDigit (str.charAt (i))) n++; else if(!Character .isDigit (str.charAt (i))&&!Character.isLetter(str.charAt (i))&&!Character.isWhitespace(str.charAt (i)) ) s++; else if(Character.isLetter(str.charAt (i))) l++; } int t=n+s+l; boolean flag=false; if(t>6) { if(n>1&&s>1&&l>2) flag=true; if(flag) System .out. println ("Strong"); else System .out .println ("Weak"); } else { System .out .println ("Weak"); } } }
14th Jun 2021, 4:18 PM
Sk Musthaffa
Sk Musthaffa - avatar
0
You will pass all test cases
14th Jun 2021, 4:19 PM
Sk Musthaffa
Sk Musthaffa - avatar
- 1
Just tried. Doesn't make a difference
13th Jun 2021, 2:33 PM
Markus Gebhard
Markus Gebhard - avatar
- 1
length>=7 is the correct condition But your code not work if input has duplicates characters, since you are checking only once. For ex: abc11@@ is Strong valid password but your code giving weak password...
13th Jun 2021, 3:28 PM
Jayakrishna 🇮🇳
- 1
Quantum Even though test cases passed or not, length>=7 is correct condition. Check again that there said password length must be atleast 7 charecters. It means length should be 7 or more characters.. And next is what I said is same as you posted in your next post. again.. Check again..
13th Jun 2021, 4:36 PM
Jayakrishna 🇮🇳
- 1
Quantum If you not count 100%, then your code also not pass 100%. Means test cases are hidden, then how can you expect there may not case length==7. This is simple problem, if you not count 100% ,then in bigger projects you phase many problems there counting 100% is very tough. Ok. thats all individual opinions. Let it be. Just say what it means in code "password must be atleast 7 charecters length"
13th Jun 2021, 6:13 PM
Jayakrishna 🇮🇳
- 1
Quantum We are here on Sololearn to learn how to lead in the real world. The Task : where is the proof? So you do all opposite with that example. Anyways that's not our task now. Just read again my posts. And say who is being so stubborn..? I said what is correct . Not said what is wrong. (Not address you., But I can . Because there is wrong answer). Then you started discussion on my reply and example. You said its wrong example but it's a perfectly correct example.. I already said ,let it be. I just want to respond the questioner. I replied only to all your posts. Not started questions. But you keep on replying... even you down voted but not iam. still not. So stop it now.. This is my last reply .. let me do my discussion with op.
13th Jun 2021, 7:05 PM
Jayakrishna 🇮🇳