IP属地:广东
classSolution(object): defhasPathSum(self,root,targetSum): ifroot==None: returnFalse if...
背景: 公司要启动项目要做一个实时数据系统,去替代现在在oracle上计算的那套东西全部搬到Hadoop平台上;调研了Druid、Hbase、Kudu,最后定下来方案使用Ku...
解题思路: 去重用集合做的.遇到重复字符就会将0到第一个出现的字符位置丢掉.
class Solution(object):def getIntersectionNode(self, headA, headB):a, b = headA, headBw...
https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal/ 解题思路 : 二叉树层序...
classSolution(object): defhasCycle(self,head): tag=False #边界条件 ifhead==None: returnNone...
classSolution(object): defisSymmetric(self,root): self.tag_node=True ifroot.left==Nonea...