Answered step by step
Verified Expert Solution
Link Copied!

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 6 characters and at most 20 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 (i.e.,
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 0.
In one step, you can:
Insert one character to
Delete one character from
, or
Replace one character of password with another character.
Example 1:
Input: password ="a"
Output: 5
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions