
同构异形
文章平均质量分 82
jmspan
这个作者很懒,什么都没留下…
展开
-
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 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 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 评论