In this Leetcode Two Sum Problem Solution in C programming, Given an array of integer nums and an integer target, return indices of the two numbers such that they add up to the 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.
Leetcode Two Sum Problem Solution in C programming
int* twoSum(int* nums, int numsSize, int target, int* returnSize){
*returnSize = 2;
int *returnValues = malloc((*returnSize) * sizeof(int));
for ( int i=0 ; i< numsSize ; i++)
{
for( int j= i+1 ; j < numsSize; j++)
{
if( nums[i] + nums[j] == target)
{
for( int k=0 ; k<2 ; k++)
{
returnValues[0]= i;
returnValues[1]= j;
break;
}
}
}
}
return returnValues;
}
Also read,
- Leetcode Two Sum Problem Solution in C++
- Leetcode Two Sum Problem Solution in Java
- Leetcode Two Sum Problem Solution in Python
- Leetcode two Sum Problem Solution in C#