GoodLuck490332048
GoodLuck490332048
全部文章
分类
归档
标签
去牛客网
登录
/
注册
GoodLuck490332048的博客
全部文章
(共3篇)
题解 | #最长公共子序列#
s1 = input() s2 = input() if not s1 or not s2: print("-1") m = len(s1) n = len(s2) r...
Python3
2022-10-24
1
248
题解 | #跳跃游戏-ii#
class Solution: def jump(self , A): maxpos = 0 ...
贪心
Python3
2022-08-04
0
357
题解 | #加油站#
class Solution: def canCompleteCircuit(self , gas , cost ): # 走一圈的意思是从某个加油站...
Python3
2022-08-04
0
403