leetcode--python--605

605. 种花问题

假设你有一个很长的花坛,一部分地块种植了花,另一部分却没有。可是,花卉不能种植在相邻的地块上,它们会争夺水源,两者都会死去。

给定一个花坛(表示为一个数组包含0和1,其中0表示没种植花,1表示种植了花),和一个数 n 。能否在不打破种植规则的情况下种入 n 朵花?能则返回True,不能则返回False。

class Solution:
    def canPlaceFlowers(self, flowerbed: List[int], n: int) -> bool:
        tem_list = [0] + flowerbed + [0]
        num = len(tem_list)
        k = 0
        for i in range(1, num-1):
            if tem_list[i] == 0 and tem_list[i-1] == 0 and tem_list[i+1] == 0 :
                tem_list[i] = 1
                k+=1
        return(k >= n)		##注意这里是大于等于而不是等于,看清题目
上一篇:LeetCode.989-数组形式的整数做加法(Add to Array-Form of Integer)


下一篇:排序算法-冒泡排序