Can Place Flowers
Try to solve the Can Place Flowers problem.
We'll cover the following
Statement
Given an integer list flowerbed
, each element is either n
. Determine if n
new flowers can be planted without violating the rule that no two flowers can be planted in adjacent plots. Return TRUE if it’s possible to plant all n
flowers. Otherwise, return FALSE.
Constraints:
flowerbed.length
n
flowerbed.length
flowerbed[i]
isor . There are no two adjacent flowers in the
flowerbed
.
Examples
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.