个性白猫

文章
6
资源
0
加入时间
2年10月21天

力扣遇到两个数之和时的问题

今天在刷力扣时遇到一个小问题,记录下来,防止自己忘记。/* * Note: The returned array must be malloced, assume caller calls free(). */int* twoSum(int* nums, int numsSize, int target){ int x[2]={0}; for(int i=0;i&lt...