2022-03-27 20:38:29 +08:00
|
|
|
|
<p>给定一个二进制数组 <code>nums</code> , 找到含有相同数量的 <code>0</code> 和 <code>1</code> 的最长连续子数组,并返回该子数组的长度。</p>
|
|
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
|
2022-05-02 23:42:43 +08:00
|
|
|
|
<p><strong>示例 1:</strong></p>
|
2022-03-27 20:38:29 +08:00
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
|
<strong>输入:</strong> nums = [0,1]
|
|
|
|
|
<strong>输出:</strong> 2
|
|
|
|
|
<strong>说明:</strong> [0, 1] 是具有相同数量 0 和 1 的最长连续子数组。</pre>
|
|
|
|
|
|
2022-05-02 23:42:43 +08:00
|
|
|
|
<p><strong>示例 2:</strong></p>
|
2022-03-27 20:38:29 +08:00
|
|
|
|
|
|
|
|
|
<pre>
|
|
|
|
|
<strong>输入:</strong> nums = [0,1,0]
|
|
|
|
|
<strong>输出:</strong> 2
|
|
|
|
|
<strong>说明:</strong> [0, 1] (或 [1, 0]) 是具有相同数量 0 和 1 的最长连续子数组。</pre>
|
|
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
|
|
|
|
|
<p><strong>提示:</strong></p>
|
|
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
|
<li><code>1 <= nums.length <= 10<sup>5</sup></code></li>
|
|
|
|
|
<li><code>nums[i]</code> 不是 <code>0</code> 就是 <code>1</code></li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<p> </p>
|
|
|
|
|
|
|
|
|
|
<p><meta charset="UTF-8" />注意:本题与主站 525 题相同: <a href="https://leetcode-cn.com/problems/contiguous-array/">https://leetcode-cn.com/problems/contiguous-array/</a></p>
|