摘要: /** * @param {number[]} nums * @return {number} */var removeDuplicates = function(nums) { if(nums.length == 0){ return 0; } var count = 1; for(var i = 阅读全文
posted @ 2018-08-12 19:00 我女儿今年一岁半 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文
posted @ 2018-08-11 10:45 我女儿今年一岁半 阅读(119) 评论(0) 推荐(0) 编辑