Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Readme.md

Password Strength

A program to check the strength of the password . For a strong password, the password must contain a mixture of upper case letters, a digit (including 0-9), and special characters with lower case letters.

Sample Input

Sapna123@

Sample Output

Password Valid and Strong.

Screenshot

demo

Time Complexity

O(N)

Space Complexity

O(1)