Skip to content

Commit

Permalink
Update Password with has_mixed_case placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
kbuffardi committed Nov 5, 2024
1 parent 644db84 commit 84099a2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Password.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,12 @@ int Password::count_leading_characters(string phrase){
}
return repetition;
}


/*
receives a string and returns whether it has both at least one upper-case
letter and at least one lower-case letter
*/
bool Password::has_mixed_case(string pass){
return false;
}

0 comments on commit 84099a2

Please sign in to comment.