leetcode解题
文章平均质量分 50
时光_
这个作者很懒,什么都没留下…
展开
-
Leetcode Range Sum Query 2D - Immutable
Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left corner (row1, col1) and lower right corner (row2, col2).Range Sum Query 2D The above rectangle (wi原创 2015-11-22 13:41:04 · 424 阅读 · 0 评论 -
Best Time to Buy and Sell Stock II
/** * @Title: maxProfit * @Description: TODO采用贪心策略,首先找到最小买入价格,找到后再去找最大卖出价格,找到最大买出价格后标记下可以买出,然后用最大卖出价格减去最小买入 * 价格来计算本次交易利润,若没找到最大卖出价格,则视作本次没有交易; * @param @param prices * @para原创 2015-11-27 17:21:10 · 319 阅读 · 0 评论