771. Jewels and Stones 由于是按难易度排序的,因此本题是第一题。 题目链接 771. Jewels and Stones 题目分析 从第二个参数S中找第一个参数J 中出现的字符,返回找到的字符个数。…
分类:LeetCode
Leetcode PHP题解--D23 1. Two Sum
1. Two Sum 题目链接 1. Two Sum 题目分析 给一个数组A和一个数字n,从数组中找到两个数字,这两个数字相加之后等于n。 思路 这个只有用蛮力法了吧。 先拿第一个数组作为加数1,然后逐个相加,判断是否等…
Leetcode - Lexicographical Numbers
My code: public class Solution { public List<Integer> lexicalOrder(int n) { List<Integer> ret = ne…
516. 最长回文子序列
问题 这个题目的dp 状态很好理解, 但是状态转化公式需要再总结一下 class Solution(object): def longestPalindromeSubseq(self, s): """ :type s: …
LeetCode题目汇总
我的博客:http://blog.csdn.net/yano_nankai LeetCode题解:https://github.com/LjyYano/LeetCode LeetCode之Array题目汇总 LeetCo…
LeetCode 7. Reverse Integer
Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 Note: The input is…
Lintcode-背包问题IX
题目 You have a total of 10 * n thousand yuan, hoping to apply for a university abroad. The application is requi…
2018-01-28 C++set的使用
1、定义和初始化 set<int> S; set<int> S(S1); vector<int> ivec({0,1,2,3,4,5,5,4,3,2,1,0}); set<int…
LeetCode[21] - Encode and Decode Strings
不难,但是要考虑好如何handle “”。 因为平时都把“” 当做Null对待,这里就犯浑了。 这题,要把Null特别mark一下为‘NULL’,而特别处理 “” empty string. /*…
LeetCode[20] - Binary Tree Longest Consecutive Sequence
屌炸天的4行代码。 我洋洋洒洒那么多行,最后还不work.看了solution, 如此精简。 主要想法: Recursive用好。首先在这个level比一比,可否成。 不成的话,另立门户。 然后左右开弓。再把结果拿过来比…
LeetCode[23] - Group Anagrams
M 方法一: 60% 和check anagram 想法一样:转化并sort char array,用来作为key。 把所有anagram 存在一起。注意结尾Collections.sort(). O(NKlog(K))…
[LeetCode By Go 44]506. Relative Ranks
题目 Given scores of N athletes, find their relative ranks and the people with the top three highest scores, who…