1. 位运算 2. 10进制进位,取余 3. 找规律题目 136. Single Number Given an array of integers, every element appears twice except…
分类:LeetCode
三刷254. Factor Combinations
很典型的dfs题,有几个地方容易出错: 下一次搜索可以从当前数字开始,但不能比当前数字更小:12 [2,2,3] works, 没说后面的必须比前面的大,这点就是startNum参数的用处以及为什么dfsHelper(r…
[LeetCode By Go 10]412. Fizz Buzz
题目 Write a program that outputs the string representation of numbers from 1 to n. But for multiples of three i…
300. 最长上升子序列
题目 给定一个无序的整数数组,找到其中最长上升子序列的长度。 示例: 输入: [10,9,2,5,3,7,101,18] 输出: 4 解释: 最长的上升子序列是 [2,3,7,101],它的长度是 4。 说明: 可能会有…
4. Median of Two Sorted Arrays(topK-logk)
4. Median of Two Sorted Arrays 题目 There are two sorted arrays nums1 and nums2 of size m and n respectively. Fi…
[LeetCode] Sort Transformed Array 变换数组排序
Given a sorted array of integers nums and integer values a, b and c. Apply a function of the form f(x) …
LeetCode 300 Longest Increasing Subsequence
题目描述 Given an unsorted array of integers, find the length of longest increasing subsequence. For example, Give…
力扣(LeetCode)31
题目地址:https://leetcode-cn.com/probl… 题目描述:实现获取下一个排列的函数,算法需要将给定数字序列重新排列成字典序中下一个更大的排列。 如果不存在下一个更大的排列,则将数字重新…
[array] leetcode-56. Merge Intervals - Medium
leetcode-56. Merge Intervals – Medium descrition Given a collection of intervals, merge all overlapping …
表示数值的字符串
题目描述 请实现一个函数用来判断字符串是否表示数值(包括整数和小数)。例如,字符串”+100″,”5e2″,”-123″,”3.14…
Leetcode PHP题解--D37 682. Baseball Game
682. Baseball Game 题目链接 682. Baseball Game 题目分析 给定一个字符串数组,每一个字符串有以下形式: 数字。直接计算得分。 +。代表本轮分数为上一轮和上上一轮分数之和。 D。代表本…
LeetCode Solutions
1.Reverse Vowels of a String(345) leetcode链接 <p>Write a function that takes a string as input and revers…