mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<p>给你一个字符串数组 <code>nums</code> ,该数组由 <code>n</code> 个 <strong>互不相同</strong> 的二进制字符串组成,且每个字符串长度都是 <code>n</code> 。请你找出并返回一个长度为 <code>n</code> 且 <strong>没有出现</strong> 在 <code>nums</code> 中的二进制字符串<em>。</em>如果存在多种答案,只需返回 <strong>任意一个</strong> 即可。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>nums = ["01","10"]
|
||
<strong>输出:</strong>"11"
|
||
<strong>解释:</strong>"11" 没有出现在 nums 中。"00" 也是正确答案。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>nums = ["00","01"]
|
||
<strong>输出:</strong>"11"
|
||
<strong>解释:</strong>"11" 没有出现在 nums 中。"10" 也是正确答案。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>nums = ["111","011","001"]
|
||
<strong>输出:</strong>"101"
|
||
<strong>解释:</strong>"101" 没有出现在 nums 中。"000"、"010"、"100"、"110" 也是正确答案。</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>n == nums.length</code></li>
|
||
<li><code>1 <= n <= 16</code></li>
|
||
<li><code>nums[i].length == n</code></li>
|
||
<li><code>nums[i] </code>为 <code>'0'</code> 或 <code>'1'</code></li>
|
||
<li><code>nums</code> 中的所有字符串 <strong>互不相同</strong></li>
|
||
</ul>
|