1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cs/max-consecutive-ones-iii.cs
Matej Focko 66f8d84892
cs: add «1004. Max Consecutive Ones III»
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-08-12 21:43:51 +02:00

22 lines
486 B
C#

public class Solution {
public int LongestOnes(int[] nums, int k) {
int maxLength = 0;
int zeros = 0;
for (int i = 0, j = 0; j < nums.Length; ++j) {
if (nums[j] == 0) {
++zeros;
}
for (; zeros > k; ++i) {
if (nums[i] == 0) {
--zeros;
}
}
maxLength = Math.Max(maxLength, j - i + 1);
}
return maxLength;
}
}