2020年5月25日

lc 最大正方形

摘要: 链接:https://leetcode-cn.com/problems/maximal-square/ 代码: class Solution: def maximalSquare(self, matrix: List[List[str]]) -> int: m = len(matrix) if m 阅读全文

posted @ 2020-05-25 01:05 FriskyPuppy 阅读(113) 评论(0) 推荐(0) 编辑

lc 二叉树的锯齿形层次遍历

摘要: 链接:https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal/ 代码: /** * Definition for a binary tree node. * struct TreeNode { * int v 阅读全文

posted @ 2020-05-25 01:00 FriskyPuppy 阅读(71) 评论(0) 推荐(0) 编辑

lc 二叉树的最近公共祖先

摘要: 链接:https://leetcode-cn.com/submissions/detail/73071277/ 代码: /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; 阅读全文

posted @ 2020-05-25 00:59 FriskyPuppy 阅读(146) 评论(0) 推荐(0) 编辑

lc 合并K个排序链表

摘要: 链接:https://leetcode-cn.com/problems/merge-k-sorted-lists/ 代码: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next 阅读全文

posted @ 2020-05-25 00:55 FriskyPuppy 阅读(131) 评论(0) 推荐(0) 编辑

lc 相交链表

摘要: 链接:https://leetcode-cn.com/problems/intersection-of-two-linked-lists/ 代码: # Definition for singly-linked list. # class ListNode(object): # def __init_ 阅读全文

posted @ 2020-05-25 00:53 FriskyPuppy 阅读(128) 评论(0) 推荐(0) 编辑

lc 环形链表 II

摘要: 链接:https://leetcode-cn.com/problems/linked-list-cycle-ii/ 代码: # Definition for singly-linked list. # class ListNode(object): # def __init__(self, x): 阅读全文

posted @ 2020-05-25 00:51 FriskyPuppy 阅读(107) 评论(0) 推荐(0) 编辑

导航