2017年3月6日

摘要: public class Solution { /** * @param n: An integer * @return: An integer */ int climbStairs(int n) { if(n==0) { return 1; } int []a=new int[n+1... 阅读全文
posted @ 2017-03-06 21:48 l1500802078 阅读(104) 评论(0) 推荐(0) 编辑
 
摘要: class Solution { public: /** * @param prices: Given an integer array * @return: Maximum profit */ int maxProfit(vector &prices) { // write your code here ... 阅读全文
posted @ 2017-03-06 21:47 l1500802078 阅读(90) 评论(0) 推荐(0) 编辑
 
摘要: class Solution { public: /** * @param A: a list of integers * @return : return an integer */ int removeDuplicates(vector &numbers) { if(numbers.empty()) ... 阅读全文
posted @ 2017-03-06 21:45 l1500802078 阅读(109) 评论(0) 推荐(0) 编辑