mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<p>给你一个二进制字符串 <code>s</code> 和一个整数 <code>k</code> 。如果所有长度为 <code>k</code> 的二进制字符串都是 <code>s</code> 的子串,请返回 <code>true</code> ,否则请返回 <code>false</code> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>s = "00110110", k = 2
|
||
<strong>输出:</strong>true
|
||
<strong>解释:</strong>长度为 2 的二进制串包括 "00","01","10" 和 "11"。它们分别是 s 中下标为 0,1,3,2 开始的长度为 2 的子串。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>s = "0110", k = 1
|
||
<strong>输出:</strong>true
|
||
<strong>解释:</strong>长度为 1 的二进制串包括 "0" 和 "1",显然它们都是 s 的子串。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>s = "0110", k = 2
|
||
<strong>输出:</strong>false
|
||
<strong>解释:</strong>长度为 2 的二进制串 "00" 没有出现在 s 中。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= s.length <= 5 * 10<sup>5</sup></code></li>
|
||
<li><code>s[i]</code> 不是<code>'0'</code> 就是 <code>'1'</code></li>
|
||
<li><code>1 <= k <= 20</code></li>
|
||
</ul>
|