0
Password Validation с++
Code fails only one task where it displays 'Strong' instead of 'Weak' https://code.sololearn.com/cvCIC3wwxM3I/?ref=app
2 Antworten
+ 2
Remember that case statements inside a switch continue being executed if the previous one has not been terminated by a break statement. At the moment, you increment `symbol` not only when you find a special character, but when encountering a digit too.
+ 1
Thank you