Skip to content

Commit 84099a2

Browse files
committed
Update Password with has_mixed_case placeholder
1 parent 644db84 commit 84099a2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Password.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,12 @@ int Password::count_leading_characters(string phrase){
1818
}
1919
return repetition;
2020
}
21+
22+
23+
/*
24+
receives a string and returns whether it has both at least one upper-case
25+
letter and at least one lower-case letter
26+
*/
27+
bool Password::has_mixed_case(string pass){
28+
return false;
29+
}

0 commit comments

Comments
 (0)