Given a binary tree, find the leftmost value in the last row of the tree. Example 1: Input: 2 / \ 1 3 O…
分类:LeetCode
[LeetCode] Longest Uncommon Subsequence II 最长非共同子序列之二
Given a list of strings, you need to find the longest uncommon subsequence among them. The longest unco…
[LeetCode] Set Intersection Size At Least Two 设置交集大小至少为2
An integer interval [a, b] (for integers a < b) is a set of all consecutive integers …
LeetCode | Flatten Binary Tree to Linked List
题目: Given a binary tree, flatten it to a linked list in-place. For example, Given 1 / \ 2 5 / \ \ 3 4 6 The fl…
LeetCode 152 Maximum Product Subarray
题目描述 Find the contiguous subarray within an array (containing at least one number) which has the largest produ…
【leetcode】70. Climbing Stairs 每次一阶或两阶爬楼梯
1. 题目 You are climbing a stair case. It takes n steps to reach to the top. Each time you can either climb 1 or…
LeetCode 15. 3Sum
题目 给出一个有n个整数的数组S,在S中找到三个整数a, b, c,找到所有使得a + b + c = 0的三元组。 注意事项 在三元组(a, b, c),要求a <= b <= c。 结果不能包含重复的三元…
树结构及其相关遍历(未完待续)
老规矩,基本概念不讲了,多看看网上的各种大牛文章。在这里说说自己观点,再拿几道例题演示下。想研究更高级的话,找个红黑树或者其他之类的去玩玩,保你酸爽! 个人感觉还是动态规划更难搞定些!上次的动态规划 二叉树的遍历基本上分…
LeetCode 219. 存在重复元素 II
题目描述 给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使得 nums [i] = nums [j],并且 i 和 j 的差的绝对值最大为 k。 示例 1: 输入: nums = [1,2…
LeetCode算法题-Baseball Game(Java实现)
这是悦乐书的第288次更新,第305篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第156题(顺位题号是682)。你现在是棒球比赛点记录器。给定一个字符串列表,每个字符串可以是以下4种类型之…
2018-06-20 479. Largest Palindrome Product
题意:给你一个数n,1 <= n <= 8,代表n位数,返回由2个n位数乘积组成的最大回文数,并mod 1337。 解题思路: 1、得到可能的回文数。 2、判断这个回文数是否能由两个n位数相乘得到。 第1步:…
Leetcode - Best Meeting Point
My code: public class Solution { public int minTotalDistance(int[][] grid) { if (grid == null || grid.length =…