FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
algorithms-python/algorithms/strings/strong_password.py at master · ivan1911/algorithms-python · GitHub
ivan1911
/
algorithms-python
Public
forked from
keon/algorithms
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
algorithms-python
/
algorithms
/
strings
/
strong_password.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (37 loc) · 2.06 KB
Breadcrumbs
algorithms-python
/
algorithms
/
strings
/
strong_password.py
Copy path
File metadata and controls
43 lines (37 loc) · 2.06 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
The signup page required her to input a name and a password. However, the password
must be strong. The website considers a password to be strong if it satisfies the following criteria:
1) Its length is at least 6.
2) It contains at least one digit.
3) It contains at least one lowercase English character.
4) It contains at least one uppercase English character.
5) It contains at least one special character. The special characters are: !@#$%^&*()-+
She typed a random string of length in the password field but wasn't sure if it was strong.
Given the string she typed, can you find the minimum number of characters she must add to make her password strong?
Note: Here's the set of types of characters in a form you can paste in your solution:
numbers = "0123456789"
lower_case = "abcdefghijklmnopqrstuvwxyz"
upper_case = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
special_characters = "!@#$%^&*()-+"
Input Format
The first line contains an integer denoting the length of the string.
The second line contains a string consisting of characters, the password
typed by Louise. Each character is either a lowercase/uppercase English alphabet, a digit, or a special character.
Sample Input 1: strong_password(3,"Ab1")
Output: 3 (Because She can make the password strong by adding characters,for example, $hk, turning the password into Ab1$hk which is strong.
2 characters aren't enough since the length must be at least 6.)
Sample Output 2: strong_password(11,"#Algorithms")
Output: 1 (Because the password isn't strong, but she can make it strong by adding a single digit.)
"""
def
strong_password
(
n
,
password
):
count_error
=
0
# Return the minimum number of characters to make the password strong
if
any
(
i
.
isdigit
()
for
i
in
password
)
==
False
:
count_error
=
count_error
+
1
if
any
(
i
.
islower
()
for
i
in
password
)
==
False
:
count_error
=
count_error
+
1
if
any
(
i
.
isupper
()
for
i
in
password
)
==
False
:
count_error
=
count_error
+
1
if
any
(
i
in
'!@#$%^&*()-+'
for
i
in
password
)
==
False
:
count_error
=
count_error
+
1
return
max
(
count_error
,
6
-
n
)
Back
|
FazBrowse Home
|
New Git URL