07 2016 档案

摘要:Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be 阅读全文
posted @ 2016-07-21 13:00 U_F_O 阅读(118) 评论(0) 推荐(0) 编辑
摘要:Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. Each num 阅读全文
posted @ 2016-07-21 12:58 U_F_O 阅读(97) 评论(0) 推荐(0) 编辑
摘要:Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeat 阅读全文
posted @ 2016-07-21 12:56 U_F_O 阅读(114) 评论(0) 推荐(0) 编辑
摘要:Given an array of n positive integers and a positive integer s, find the minimal length of a subarray of which the sum ≥ s. If there isn’t one, return 阅读全文
posted @ 2016-07-21 08:59 U_F_O 阅读(139) 评论(0) 推荐(0) 编辑
摘要:A peak element is an element that is greater than its neighbors. Given an input array where num[i] ≠ num[i+1], find a peak element and return its inde 阅读全文
posted @ 2016-07-21 08:43 U_F_O 阅读(157) 评论(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-07-18 08:32 U_F_O 阅读(242) 评论(0) 推荐(0) 编辑
摘要:Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space fo 阅读全文
posted @ 2016-07-15 10:45 U_F_O 阅读(72) 评论(0) 推荐(0) 编辑
摘要:Given an index k, return the kth row of the Pascal’s triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to 阅读全文
posted @ 2016-07-15 08:41 U_F_O 阅读(75) 评论(0) 推荐(0) 编辑
摘要:Given numRows, generate the first numRows of Pascal’s triangle. For example, given numRows = 5, Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 阅读全文
posted @ 2016-07-15 08:30 U_F_O 阅读(80) 评论(0) 推荐(0) 编辑
摘要:Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction 阅读全文
posted @ 2016-07-14 09:07 U_F_O 阅读(101) 评论(0) 推荐(0) 编辑
摘要:Given an array nums, write a function to move all 0’s to the end of it while maintaining the relative order of the non-zero elements. For example, giv 阅读全文
posted @ 2016-07-13 09:19 U_F_O 阅读(106) 评论(0) 推荐(0) 编辑
摘要: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 assume that the 阅读全文
posted @ 2016-07-13 08:55 U_F_O 阅读(67) 评论(0) 推荐(0) 编辑
摘要:Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: You may assume that nums1 has enough space (size th 阅读全文
posted @ 2016-07-09 14:37 U_F_O 阅读(90) 评论(0) 推荐(0) 编辑
摘要:Rotate an array of n elements to the right by k steps. For example, with n = 7 and k = 3, the array [1,2,3,4,5,6,7] is rotated to [5,6,7,1,2,3,4]. 方法1 阅读全文
posted @ 2016-07-08 12:47 U_F_O 阅读(84) 评论(0) 推荐(0) 编辑
摘要:Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr 阅读全文
posted @ 2016-07-07 23:36 U_F_O 阅读(93) 评论(0) 推荐(0) 编辑
摘要:Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the 阅读全文
posted @ 2016-07-07 13:05 U_F_O 阅读(88) 评论(0) 推荐(0) 编辑
摘要:A. Winner time limit :per test 1 second memory limit: per test 64 megabytes input: standard input output: standard output The winner of the card game 阅读全文
posted @ 2016-07-05 23:24 U_F_O 阅读(164) 评论(0) 推荐(0) 编辑
摘要:Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文
posted @ 2016-07-02 21:45 U_F_O 阅读(111) 评论(0) 推荐(0) 编辑