1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cs/can-place-flowers.cs

20 lines
493 B
C#
Raw Normal View History

public class Solution {
public bool CanPlaceFlowers(int[] flowerbed, int n) {
var count = 0;
int left = 0, right;
for (var i = 0; i < flowerbed.Length; ++i) {
right = (i + 1 < flowerbed.Length) ? flowerbed[i + 1] : 0;
if (left == 0 && flowerbed[i] == 0 && right == 0) {
++count;
left = 1;
} else {
left = flowerbed[i];
}
}
return count >= n;
}
}