02 2017 档案

摘要:Given a binary array, find the maximum number of consecutive 1s in this array. Example 1: Note: The input array will only contain 0 and 1.The length o 阅读全文
posted @ 2017-02-17 17:53 细雨落花 阅读(142) 评论(0) 推荐(0)
摘要:Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Given an array of integers where 阅读全文
posted @ 2017-02-17 16:37 细雨落花 阅读(301) 评论(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 @ 2017-02-17 12:06 细雨落花 阅读(274) 评论(0) 推荐(0)
摘要:Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array. For example,Given nums = [0, 1, 阅读全文
posted @ 2017-02-17 11:21 细雨落花 阅读(151) 评论(0) 推荐(0)
摘要:Contains Duplicate Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at lea 阅读全文
posted @ 2017-02-15 16:24 细雨落花 阅读(230) 评论(0) 推荐(0)
摘要:Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. The function 阅读全文
posted @ 2017-02-10 18:01 细雨落花 阅读(154) 评论(0) 推荐(0)
摘要:Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return 例 i = 5的生成过程: i = 0 row = [1]; 内层循环不执行; allrows 阅读全文
posted @ 2017-02-10 12:13 细雨落花 阅读(149) 评论(0) 推荐(0)