Leetcode 605. 种花问题 (简单贪心,能种就种)

Leetcode 605. 种花问题 (简单贪心,能种就种)_第1张图片

class Solution {
public:
    bool canPlaceFlowers(vector& flowerbed, int n) {
        int m = flowerbed.size(), count = 0;
        for(int i=0;i=n;
    }
};

 

你可能感兴趣的:(算法)