Files
Leetcode/167. Two Sum II - Input Array Is Sorted/Program.cs
Electrominch 0b88604037 Day5
2022-10-07 00:48:29 +03:00

12 lines
309 B
C#

namespace _167._Two_Sum_II___Input_Array_Is_Sorted
{
internal class Program
{
static void Main(string[] args)
{
var arr = new int[] { -2,-3,4 };
var res = new Solution().TwoSum(arr, -5);
Console.WriteLine(String.Join(" ", res));
}
}
}