shredderzwj
shredderzwj
全部文章
题解
归档
标签
去牛客网
登录
/
注册
shredderzwj的博客
全部文章
/ 题解
(共23篇)
题解 | #合并区间#
# class Interval: # def __init__(self, a=0, b=0): # self.start = a # self.end = b # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # ...
Python3
2021-11-08
0
424
题解 | #二叉树的最大深度#
class Solution: def maxDepth(self, root: TreeNode) -> int: # write code here if root is None: return 0 if r...
Python3
2021-11-08
1
376
题解 | #判断一个链表是否为回文结构#
# class ListNode: # def __init__(self, x): # self.val = x # self.next = None # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @para...
Python3
2021-11-08
0
392
首页
上一页
1
2
3
下一页
末页