website/content.en/ChapterFour/0600~0699/0605.Can-Place-Flowers.md
You have a long flowerbed in which some of the plots are planted, and some are not. However, flowers cannot be planted in adjacent plots.
Given an integer array flowerbed containing 0's and 1's, where 0 means empty and 1 means not empty, and an integer n, return if n new flowers can be planted in the flowerbed without violating the no-adjacent-flowers rule.
Example 1:
Input: flowerbed = [1,0,0,0,1], n = 1
Output: true
Example 2:
Input: flowerbed = [1,0,0,0,1], n = 2
Output: false
Constraints:
1 <= flowerbed.length <= 2 * 104flowerbed[i] is 0 or 1.flowerbed.0 <= n <= flowerbed.lengthSuppose you have a very long flowerbed, where some plots are planted with flowers and others are not. However, flowers cannot be planted in adjacent plots, because they will compete for water and both will die. Given a flowerbed (represented as an array containing 0s and 1s, where 0 means no flower is planted and 1 means a flower is planted), and a number n . Can n flowers be planted without violating the planting rule? Return True if possible, otherwise return False.
package leetcode
func canPlaceFlowers(flowerbed []int, n int) bool {
lenth := len(flowerbed)
for i := 0; i < lenth && n > 0; i += 2 {
if flowerbed[i] == 0 {
if i+1 == lenth || flowerbed[i+1] == 0 {
n--
} else {
i++
}
}
}
if n == 0 {
return true
}
return false
}