牛客432959891号
牛客432959891号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客432959891号的博客
全部文章
(共30篇)
题解 | #最小覆盖子串#
class Solution: def minWindow(self , S: str, T: str) -> str:  ...
Python3
2022-08-30
2
357
题解 | #把数字翻译成字符串# 注释明了,思路清晰
class Solution: def solve(self , nums: str) -> int: ...
Python3
2022-08-29
5
467
题解 | #打家劫舍(二)#
class Solution: def rob(self , nums: List[int]) -> int: &...
Python3
2022-08-28
1
303
题解 | #滑动窗口的最大值#简单好理解
class Solution: def maxInWindows(self , num: List[int], size: int) -> List[int...
Python3
2022-08-21
1
296
题解 | #求最小公倍数#
def function1(num1, num2): if num2 == 0: return ...
Python3
2022-08-16
2
324
题解 | #记负均正II#
p = [] n = [] while True: try: num = int(in...
Python3
2022-08-16
2
259
题解 | #在字符串中找出连续最长的数字串#
while True: try: import collections &n...
Python3
2022-08-16
1
341
题解 | #求最大连续bit数#
while True: try: n = int(input())  ...
Python3
2022-08-11
1
359
题解 | #最长回文子串#
while True: try: s = input() &nbs...
Python3
2022-08-11
0
330
题解 | #整型数组合并#
while True: try: n, nums1 = int(input()), list(map(in...
Python3
2022-08-11
1
252
首页
上一页
1
2
3
下一页
末页