🧠 Problem Summary You're given a flowerbed (an array of 0s and 1s), where: 0 → empty plot 1 → already planted flower You need to plant n new flowers without placing them in adjacent plots. Return true if it's possible, otherwise false. ⚙️ Appro...