DEV Community

Miss Pooja Anilkumar Patel
Miss Pooja Anilkumar Patel

Posted on

605. Leetcode Solution in cpp

class Solution { public: bool canPlaceFlowers(vector<int>& flowerbed, int n) { if (n == 0) return true; for (int i = 0; i < flowerbed.size(); ++i) if (flowerbed[i] == 0 && (i == 0 || flowerbed[i - 1] == 0) && (i == flowerbed.size() - 1 || flowerbed[i + 1] == 0)) { flowerbed[i] = 1; if (--n == 0) return true; } return false; } }; 
Enter fullscreen mode Exit fullscreen mode

leetcode

challenge

Here is the link for the problem:
https://leetcode.com/problems/can-place-flowers/

Top comments (0)