+ 1
Why this program is not working?
I write password validator program for code coach challenge but it is not working for 2 tests. This is mine :: https://code.sololearn.com/cVQKvWTqO13X/?ref=app
4 Answers
+ 1
set removes dublicates.. What is the need of that there...
Ex:
aaaaaaa@#12 is valid Strong password but your program results Weak
0
Thanks! But I have solved this problem and still not working
0
Your using set for calculating number count also..
Remove that also... All types of dublicates allowed..
Ex:
INPUT111@# is strong password..
0
Thanks!