摘要: Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. AC代码: def mergeKLists_merge_sort(self, lists): def 阅读全文
posted @ 2016-03-01 23:54 水果拼盘武士G 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: " 阅读全文
posted @ 2016-02-29 23:54 水果拼盘武士G 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. AC代码: cl 阅读全文
posted @ 2016-02-28 22:47 水果拼盘武士G 阅读(95) 评论(0) 推荐(0) 编辑
摘要: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in the 阅读全文
posted @ 2016-02-27 23:25 水果拼盘武士G 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2. After rem 阅读全文
posted @ 2016-02-26 23:50 水果拼盘武士G 阅读(89) 评论(0) 推荐(0) 编辑
摘要: Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array whic 阅读全文
posted @ 2016-02-25 23:51 水果拼盘武士G 阅读(260) 评论(0) 推荐(0) 编辑
摘要: Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telepho 阅读全文
posted @ 2016-02-24 23:56 水果拼盘武士G 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. 阅读全文
posted @ 2016-02-23 23:33 水果拼盘武士G 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of 阅读全文
posted @ 2016-02-22 23:43 水果拼盘武士G 阅读(236) 评论(0) 推荐(0) 编辑
摘要: Write a function to find the longest common prefix string amongst an array of strings. AC方法: class Solution(object): def longestCommonPrefix(self, str 阅读全文
posted @ 2016-02-21 19:49 水果拼盘武士G 阅读(127) 评论(0) 推荐(0) 编辑