C--力扣刷题(1).两数之和

/**
 * Note: The returned array must be malloced, assume caller calls free().
 */
int* twoSum(int* nums, int numsSize, int target, int* returnSize){
    int *indi = NULL;
    indi = (int *)malloc(2 * sizeof(int));
    int temp[numsSize],i,j;
    for(i=0;i

C--力扣刷题(1).两数之和_第1张图片

运行一般,后期学的好一点再优化。

你可能感兴趣的:(Leetcode爬楼)