leetcode刷题笔记——1.两数之和题目描述分析收获
题目描述分析暴力枚举描述对数组每个元素x,遍历寻找元素target-x。并注意到在遍历时,当前元素已与位于其之前的元素匹配过,于是只需要在其之后的元素中查找即可。代码/** * Note: The returned array must be malloced, assume caller calls free(). */int* twoSum(int* nums, int numsSize, int target, int* returnSize){ for(int i = 0