From 84099a2a2226703fe043fca6a91f423490be5875 Mon Sep 17 00:00:00 2001 From: Kevin Buffardi Date: Tue, 5 Nov 2024 12:35:56 -0800 Subject: [PATCH] Update Password with has_mixed_case placeholder --- Password.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Password.cpp b/Password.cpp index bd06cce..f1f345b 100644 --- a/Password.cpp +++ b/Password.cpp @@ -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; +} \ No newline at end of file