
直方图
文章平均质量分 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 评论 -
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 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 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 358. Rearrange String k Distance Apart(字符间隔)
原题网址:https://leetcode.com/problems/rearrange-string-k-distance-apart/Given a non-empty string str and an integer k, rearrange the string such that the same characters are at least distance k fro原创 2016-06-15 03:27:55 · 5851 阅读 · 0 评论 -
LeetCode 316. Remove Duplicate Letters(删除重复字母)
原题网址:https://leetcode.com/problems/remove-duplicate-letters/Given a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You mus原创 2016-04-23 05:51:58 · 2254 阅读 · 1 评论 -
LeetCode 438. Find All Anagrams in a String
原题网址:https://leetcode.com/problems/find-all-anagrams-in-a-string/Given a string s and a non-empty string p, find all the start indices of p's anagrams in s.Strings consists of lowercase Engl原创 2016-10-26 05:08:28 · 700 阅读 · 0 评论 -
389. Find the Difference
原题网址:https://leetcode.com/problems/find-the-difference/Given two strings s and t which consist of only lowercase letters.String t is generated by random shuffling string s and then add one m原创 2016-10-27 02:55:27 · 319 阅读 · 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 评论 -
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 评论 -
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 评论 -
LeetCode 84. Largest Rectangle in Histogram(最大矩形)
原题网址:https://leetcode.com/problems/largest-rectangle-in-histogram/Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest原创 2016-05-23 00:34:09 · 481 阅读 · 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 85. Maximal Rectangle(最大矩形)
原题网址:https://leetcode.com/problems/maximal-rectangle/Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.方法:应用直方图最大矩形面积的方法。publ原创 2016-05-23 00:34:22 · 1827 阅读 · 0 评论 -
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 评论 -
LeetCode 299. Bulls and Cows(公牛和母牛)
原题网址:https://leetcode.com/problems/bulls-and-cows/You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. E原创 2016-04-17 00:36:08 · 420 阅读 · 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 LeetCode 205. Isomorphic Strings(同形词)
原题网址:https://leetcode.com/problems/isomorphic-strings/Given two strings s and t, determine if they are isomorphic.Two strings are isomorphic if the characters in s can be replaced to get t.原创 2016-05-04 07:58:15 · 403 阅读 · 0 评论 -
LeetCode 318. Maximum Product of Word Lengths(最大单词长度乘积)
原题网址:https://leetcode.com/problems/maximum-product-of-word-lengths/Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where the two words do not share comm原创 2016-04-23 13:28:40 · 910 阅读 · 1 评论 -
LeetCode 221. Maximal Square(最大正方形)
原题网址:https://leetcode.com/problems/maximal-square/Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the foll原创 2016-05-06 12:25:55 · 1565 阅读 · 0 评论 -
LeetCode 11. Container With Most Water(容器装水)
原题网址:https://leetcode.com/problems/container-with-most-water/Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn su原创 2016-05-19 05:24:14 · 921 阅读 · 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 36. Valid Sudoku(数独游戏)
原题网址:https://leetcode.com/problems/valid-sudoku/Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.The Sudoku board could be partially filled, where empty cells are fil原创 2016-05-20 10:38:02 · 715 阅读 · 0 评论 -
LeetCode 37. Sudoku Solver(数读游戏)
原题网址:https://leetcode.com/problems/sudoku-solver/Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that th原创 2016-05-20 10:40:25 · 444 阅读 · 0 评论 -
LeetCode 49. Group Anagrams(分组同构异形词)
原题网址:https://leetcode.com/problems/anagrams/Given an array of strings, group anagrams together.For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return:[ ["ate", "eat","t原创 2016-05-21 06:11:47 · 1633 阅读 · 0 评论 -
LeetCode 451. Sort Characters By Frequency
原题网址:https://leetcode.com/problems/sort-characters-by-frequency/Given a string, sort it in decreasing order based on the frequency of characters.Example 1:Input:"tree"Output:"eert"Ex原创 2017-01-04 09:46:43 · 1136 阅读 · 0 评论