Given a binary tree where all the right nodes are either leaf nodes with a sibling (a left node that shares th…
分类:LeetCode
LeetCode刷题之K-diff Pairs in an Array
Problem Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the…
[LeetCode] Combine Two Tables 联合两表
Table: Person +-------------+---------+ | Column Name | Type | +-------------+---------+ | PersonI…
[Leetcode] Path Sum I & II & III 路径和1,2,3
最新更新请见:https://yanjia.me/zh/2019/01/… Path Sum I Given a binary tree and a sum, determine if the tree ha…
[Leetcode] Missing Number and Missing First Positive 找缺失数
Missing Number Given an array containing n distinct numbers taken from 0, 1, 2, …, n, find the one that …
招募管理员
如题。 本人程序员,读过些书,不求甚解。 为人和善,如果你有时间的话,可以帮忙打理一下这个专题。 当然,有几个条件 1. 你喜欢写点东西。 2. 你登录jianshu.com的频率比我高。 3. 你不是程序员。 虽然这个…
1.两数之和(Swift版)
一、题目 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。 你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因…
二刷Word Search
Medium 基本bug free吧,dfs.这道题的时间复杂度分析起来还是挺有意思的,第一次搜索第一个字母需要O(M*N),对于board里面的每个位置,我们都要从四个方向去搜索下一个位置。可以想象一棵quadtree…
[LeetCode] Line Reflection 直线对称
Given n points on a 2D plane, find if there is such a line parallel to y-axis that reflect the given se…
LeetCode 172 Factorial Trailing Zeroes
题目描述 Given an integer n, return the number of trailing zeroes in n!. Note: Your solution should be in logarith…
[Leetcode] Product of Array Except Self 自身以外的数组乘积
Product of Array Except Self Given an array of n integers where n > 1, nums, return an array output such th…
LintCode Binary Tree Maximum Node二叉树的最大节点
Find the maximum node in a binary tree, return the node. 样例 给出如下一棵二叉树: 1 / -5 2 / \ / 0 3 -4 -5 返回值为 3 的节点。 分析…