<p>You have a long flowerbed in which some of the plots are planted, and some are not. However, flowers cannot be planted in <strong>adjacent</strong> plots.</p>
<p>Given an integer array <code>flowerbed</code> containing <code>0</code>'s and <code>1</code>'s, where <code>0</code> means empty and <code>1</code> means not empty, and an integer <code>n</code>, return <code>true</code> <em>if</em><code>n</code><em>new flowers can be planted in the</em><code>flowerbed</code><em>without violating the no-adjacent-flowers rule and</em><code>false</code><em>otherwise</em>.</p>