1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 11:08:15 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/强密码检验器 [strong-password-checker].html
2022-03-29 12:43:11 +08:00

51 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>&nbsp;</p>
如果一个密码满足下述所有条件,则认为这个密码是强密码:
<ul>
<li>由至少 <code>6</code> 个,至多 <code>20</code> 个字符组成。</li>
<li>至少包含 <strong>一个小写 </strong>字母,<strong>一个大写</strong> 字母,和 <strong>一个数字</strong></li>
<li>同一字符 <strong>不能 </strong>连续出现三次 (比如 <code>"...aaa..."</code> 是不允许的, 但是&nbsp;<code>"...aa...a..."</code> 如果满足其他条件也可以算是强密码)。</li>
</ul>
<p>给你一个字符串 <code>password</code> ,返回&nbsp;<em><code>password</code> 修改到满足强密码条件需要的最少修改步数。如果 <code>password</code> 已经是强密码,则返回 <code>0</code></em></p>
<p>在一步修改操作中,你可以:</p>
<ul>
<li>插入一个字符到 <code>password</code> </li>
<li><code>password</code> 中删除一个字符,或</li>
<li>用另一个字符来替换 <code>password</code> 中的某个字符。</li>
</ul>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>password = "a"
<strong>输出:</strong>5
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>password = "aA1"
<strong>输出:</strong>3
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>password = "1337C0d3"
<strong>输出:</strong>0
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= password.length &lt;= 50</code></li>
<li><code>password</code> 由字母、数字、点 <code>'.'</code> 或者感叹号 <code>'!'</code></li>
</ul>