庞永胜
Results
3
comments of
庞永胜
const twoSum = function(nums, target) { let a, b; for(let i = 0; i < nums.length; i++) { let tmp = target - nums[i]; let arr = nums.slice(i+1); let ind...
when will it be finshed
when will it be finshed