03 2017 档案

摘要:public class Solution { /** * @param n: An integer * @return: An integer */ public int climbStairs(int n) { // write your code here if (n <= 1) { retu 阅读全文
posted @ 2017-03-08 22:57 逸文皓 阅读(80) 评论(0) 推荐(0) 编辑
摘要:public class Solution { /** * @param prices: Given an integer array * @return: Maximum profit */ public int maxProfit(int[] prices) { // write your co 阅读全文
posted @ 2017-03-08 22:56 逸文皓 阅读(81) 评论(0) 推荐(0) 编辑
摘要:public class Solution { /** * @param A: a array of integers * @return : return an integer */ public int removeDuplicates(int[] nums) { // write your c 阅读全文
posted @ 2017-03-08 22:55 逸文皓 阅读(307) 评论(0) 推荐(0) 编辑