Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 475 Bytes

File metadata and controls

18 lines (12 loc) · 475 Bytes

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)