Answered step by step
Verified Expert Solution
Question
1 Approved Answer
A password is considered strong if the below conditions are all met: It has at least 6 characters and at most 2 0 characters. It
A password is considered strong if the below conditions are all met:
It has at least characters and at most characters.
It contains at least one lowercase letter, at least one uppercase letter, and at least one digit.
It does not contain three repeating characters in a row ie
is weak, but
is strong
Given a string password, return the minimum number of steps required to make password strong. if password is
already strong, return
In one step, you can:
Insert one character to
Delete one character from
or
Replace one character of password with another character.
Example :
Input: password a
Output:
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started