1. 题目 Given a binary tree, return the level order traversal of its nodes’ values. (ie, from left to righ…
分类:LeetCode
给定一个字符串 s,找到 s 中最长的回文子串。
题目描述:给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为 1000。 思路: 判断s[i..j]是否是回文字符串,依赖于s[i+1…j-1],这种一个问题的结果依赖于另个子集问题…
65. Valid Number
65. Valid Number 题目 Validate if a given string is numeric. Some examples: "0" => true " 0.1 " => true "a…
124. Binary Tree Maximum Path Sum
124. Binary Tree Maximum Path Sum 题目 Given a binary tree, find the maximum path sum. For this problem, a path …
[LeetCode] Add One Row to Tree 二叉树中增加一行
Given the root of a binary tree, then value v and depth d, you need to add a row of node…
[LeetCode] Delete and Earn 删除与赚取
Given an array nums of integers, you can perform operations on the array. In each operation, …
LC-mysql-184(DeparmentHighestSalary)
本SQL问题是 #184. Department Highest Salary 问题 编写SQL,找出每个部门的最高薪资 Employee表如下 +----+-------+--------+--------------…
LeetCode基础算法-数组
LeetCode基础算法-数组 算法 LeetCode 数组相关 1. 从排序数组中删除重复项 描述: 给定一个排序数组,你需要在原地删除重复出现的元素,使得每个元素只出现一次,返回移除后数组的新长度。 不要使用额外的数…
【LeetCode】- Word Break (DP问题)
1、题目描述 Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, determine if…
485. Max Consecutive Ones
描述 Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Input: [1,1,0,1,1…
LeetCode:两数之和
两数之和 题目叙述: 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的…
[LeetCode] Maximal Square 最大正方形,Number of Islands,Maximal Rectangle,Maximal Rectangle
Given a 2D binary matrix filled with 0’s and 1’s, find the largest square containing all 1&…