leetcode刷题
文章平均质量分 59
young_Emily
宝剑锋从磨砺出,少年,磨剑趁年华~
展开
-
LeetCode WIith JS || 35. Search Insert Position [有序数组插入指定数据]
题目描述: 要求我们在一个一维的有序数组中,查找指定元素,如果找到了则返回目标元素在数组中的位置,如果没有找到目标元素,则返回按照有序的方式插入数组的位置。原创 2017-08-25 15:30:47 · 387 阅读 · 0 评论 -
LeetCode With JS||26.Remove Duplicates from Sorted Array[数组去重,返回去重后的长度]
Leetcode 26 数组去重返回去重后的长度原创 2017-08-25 11:05:30 · 571 阅读 · 0 评论 -
LeetCode WIith JS || 66. Plus One [数组存储的数据加一]
题目描述:给定一个数组存储的大数,计算其加一之后的值原创 2017-08-26 22:02:20 · 495 阅读 · 0 评论 -
LeetCode WIith JS || 53. Maximum Subarray[寻求最大连续序列]
题目描述:一个数组里面数据有正有负,求连续的几个数加起来是数组中能找到的最大的和。原创 2017-08-28 17:11:49 · 718 阅读 · 0 评论 -
LeetCode WIith JS || 88. Merge Sorted Array[合并有序数组]
题目描述: 合并有序数组原创 2017-08-29 22:02:40 · 714 阅读 · 0 评论 -
LeetCode WIith JS || 118. Pascal's Triangle[杨辉三角]
题目描述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] ]大白话输入行数n,输出n行的杨辉三角原题目链接原创 2017-10-07 15:56:47 · 443 阅读 · 0 评论 -
LeetCode WIith JS || 119. Pascal's Triangle II
题目描述 Given an index k, return the kth row of the Pascal’s triangle. For example, given k = 3, Return [1,3,3,1].大白话 给行号n,输出第n行的杨辉三角序列题目链接 119. Pascal’s Triangle IIAC代码var getRow = function(rowI原创 2017-10-07 16:14:26 · 372 阅读 · 0 评论 -
LeetCode WIith JS || 121. Best Time to Buy and Sell Stock[求股票的最佳收益,只能交易一次]
题目描述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 (ie, buy one and sell one share of the stock)原创 2017-10-20 20:20:29 · 449 阅读 · 0 评论