2017年3月8日

买卖股票的最佳时机

摘要: class Solution { public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector<int> &price) { int re = 0; if(p 阅读全文

posted @ 2017-03-08 22:00 这位黑洞同学 阅读(102) 评论(0) 推荐(0) 编辑

爬楼梯

摘要: class Solution {public:/*** @param n: An integer* @return: An integer*/ int climbStairs(int n) {// write your code hereint a = 1, b = 1, k = 0;if(n == 阅读全文

posted @ 2017-03-08 21:38 这位黑洞同学 阅读(120) 评论(0) 推荐(0) 编辑

删除数组中的重复元素

摘要: class Solution {public: /** * @param A: a list of integers * @return : return an integer */ int removeDuplicates(vector<int> &nums) { // write your co 阅读全文

posted @ 2017-03-08 21:37 这位黑洞同学 阅读(122) 评论(0) 推荐(0) 编辑

导航