Alex Larose

Generation

translateSat, 04 Mar 2023

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order.

int* twoSum(int* nums, int numsSize, int target, int* returnSize){ int i, j; int *result = (int*)malloc(2*sizeof(int)); for(i=0; i<numsSize; i++){ for(j=i+1; j<numsSize; j++){ if(nums[i] + nums[j] == target){ result[0] = i; result[1] = j; *returnSize = 2; return result; } } } return NULL; }

Questions about programming?Chat with your personal AI assistant