In the Leetcode Two Sum problem solution in C# programming 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.
Leetcode Two Sum problem solution in C# programming
public class Solution {
public int[] TwoSum(int[] nums, int target) {
var start = 1;
for(var i =0; i < nums.Length; i++)
{
for (var j = start; j < nums.Length; j++)
{
if (nums[i] + nums[j] == target)
{
return new int[] { i, j };
}
}
start++;
}
return null;
}
}
Also read,
- Leetcode Two Sum Problem Solution in C
- Leetcode Two Sum Problem Solution in C++
- Leetcode Two Sum Problem Solution in Python
- Leetcode two Sum Problem Solution in Java