mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-06 07:51:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
<p>Return <em>any string of <strong>minimum length</strong> that will unlock the safe <strong>at some point</strong> of entering it</em>.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> n = 1, k = 2
|
||||
@@ -27,7 +27,7 @@
|
||||
<strong>Explanation:</strong> The password is a single digit, so enter each digit. "01" would also unlock the safe.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> n = 2, k = 2
|
||||
@@ -37,7 +37,7 @@
|
||||
- "01" is typed in starting from the 1<sup>st</sup> digit.
|
||||
- "10" is typed in starting from the 3<sup>rd</sup> digit.
|
||||
- "11" is typed in starting from the 2<sup>nd</sup> digit.
|
||||
Thus "01100" will unlock the safe. "01100", "10011", and "11001" would also unlock the safe.
|
||||
Thus "01100" will unlock the safe. "10011", and "11001" would also unlock the safe.
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
Reference in New Issue
Block a user