
频率
文章平均质量分 75
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 242. Valid Anagram(变位词校验)
原题网址:https://leetcode.com/problems/valid-anagram/Given two strings s and t, write a function to determine if t is an anagram of s.For example,s = "anagram", t = "nagaram", return true.s原创 2016-04-07 03:15:56 · 824 阅读 · 0 评论 -
387. First Unique Character in a String
原题网址:https://leetcode.com/problems/first-unique-character-in-a-string/Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1.Examp原创 2016-10-27 05:07:35 · 333 阅读 · 0 评论 -
383. Ransom Note
原题网址:https://leetcode.com/problems/ransom-note/Given an arbitrary ransom note string and another string containing letters from all the magazines, write a function that will return true if the r原创 2016-10-27 04:13:14 · 875 阅读 · 0 评论 -
LeetCode 76. Minimum Window Substring(最小窗口子串)
原题网址:https://leetcode.com/problems/minimum-window-substring/Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For ex原创 2016-05-22 05:19:30 · 625 阅读 · 0 评论 -
LeetCode 340. Longest Substring with At Most K Distinct Characters(最长字串)
原题网址:https://leetcode.com/problems/longest-substring-with-at-most-k-distinct-characters/Given a string, find the length of the longest substring T that contains at most k distinct characters.原创 2016-04-30 09:10:31 · 1327 阅读 · 0 评论 -
LeetCode 30. Substring with Concatenation of All Words(所有单词的连接)
原题网址:https://leetcode.com/problems/substring-with-concatenation-of-all-words/You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of原创 2016-05-26 02:21:59 · 480 阅读 · 0 评论 -
LeetCode 87. Scramble String(字符串扰乱)
原题网址:https://leetcode.com/problems/scramble-string/Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible原创 2016-05-23 00:34:32 · 1713 阅读 · 0 评论 -
LeetCode 30. Substring with Concatenation of All Words(单词连接)
原题网址:https://leetcode.com/problems/substring-with-concatenation-of-all-words/You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of原创 2016-05-20 10:35:51 · 348 阅读 · 0 评论 -
LeetCode 229. Majority Element II(众数II)
原题网址:https://leetcode.com/problems/majority-element-ii/Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. The algorithm should run in linear time and in O(1原创 2016-04-05 06:28:28 · 1802 阅读 · 0 评论 -
LeetCode 137. Single Number II(单个数字)
原题网址:https://leetcode.com/problems/single-number-ii/Given an array of integers, every element appears three times except for one. Find that single one.Note:Your algorithm should have a lin原创 2016-05-27 00:22:35 · 667 阅读 · 0 评论 -
LeetCode 3. Longest Substring Without Repeating Characters(最长不重复子串)
原题网址:https://leetcode.com/problems/longest-substring-without-repeating-characters/Given a string, find the length of the longest substring without repeating characters.Examples:Given "ab原创 2016-05-01 07:12:41 · 480 阅读 · 0 评论 -
LeetCode 169. Majority Element(众数)
原题网址:https://leetcode.com/problems/majority-element/Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.You may as原创 2016-05-25 01:37:08 · 1609 阅读 · 0 评论 -
LeetCode 350. Intersection of Two Arrays II(数组交集)
原题网址:https://leetcode.com/problems/intersection-of-two-arrays-ii/Given two arrays, write a function to compute their intersection.Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], retu原创 2016-05-25 01:35:00 · 1380 阅读 · 0 评论 -
LeetCode 347. Top K Frequent Elements(最频繁的K个元素)
原题网址:https://leetcode.com/problems/top-k-frequent-elements/Given a non-empty array of integers, return the k most frequent elements.For example,Given [1,1,1,2,2,3] and k = 2, return [1,2].原创 2016-05-18 08:58:53 · 995 阅读 · 1 评论 -
LeetCode 266. Palindrome Permutation(对称排列)
原题网址:https://leetcode.com/problems/palindrome-permutation/Given a string, determine if a permutation of the string could form a palindrome.For example,"code" -> False, "aab" -> True, "ca原创 2016-04-11 00:02:33 · 911 阅读 · 0 评论 -
409. Longest Palindrome
原题网址:https://leetcode.com/problems/longest-palindrome/Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those let原创 2016-10-27 07:56:53 · 304 阅读 · 0 评论