Mr_Way
Mr_Way
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
Mr_Way的博客
全部文章
(共3篇)
题解 | #二维数组中的查找#
直接遍历判断就好了 似乎没有那么复杂 运行时间50ms也能接受 class Solution: def Find(self , target: int, array: List[...
Python3
2022-11-01
1
268
题解 | #二分查找-I#
给自己看 class Solution: def search(self , nums: List[int], target: int) -> int:...
Python3
二分查找
2022-11-01
2
382
题解 | #我会开摆#python3
判断相邻四个坐标格上是否都为“#”或都为“.”,代码如下 def judge(x, y, l): if (l[y][x]=='#')&(l[y+1][x+1]=='#')&(l[y+1][x]=='#')&(l[y][x+1]=='#'): retu...
Python3
2022-10-29
2
327