Leetcode Two Sum Problem Solution in C programming

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,

By Neha Singhal

Hi, my name is Neha singhal a software engineer and coder by profession. I like to solve coding problems that give me the power to write posts for this site.

Leave a Reply

Your email address will not be published. Required fields are marked *