摘要:
问题: Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set i 阅读全文
摘要:
问题: 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. 官方难度 阅读全文
摘要:
问题: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in 阅读全文
摘要:
问题: 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 阅读全文
摘要:
问题: 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 阅读全文
摘要:
问题: Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the tele 阅读全文
摘要:
问题: 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 intege 阅读全文