2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
canPlaceFlowers.py 933 Bytes
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
class Solution:
def canPlaceFlowers(self, flowerbed, n: int) -> bool:
width=len(flowerbed)
for i in range(width):
if n==0:
return True
if i==0 and flowerbed[i]==0:
if i==width-1 or flowerbed[i+1]==0:
n-=1
flowerbed[i]=1
continue
if i==width-1 and flowerbed[i]==0 and flowerbed[i-1]==0:
n-=1
flowerbed[i]=1
continue
if flowerbed[i]==0 and flowerbed[i-1]==0 and flowerbed[i+1]==0:
flowerbed[i]=1
n-=1
continue
return n==0
s=Solution()
print(s.canPlaceFlowers([0,0,0],2))
'''
执行用时:
60 ms
, 在所有 Python3 提交中击败了
50.21%
的用户
内存消耗:
14.8 MB
, 在所有 Python3 提交中击败了
65.13%
的用户
'''
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助