Files
Leetcode/167. Two Sum II - Input Array Is Sorted/Program.cs
2022-10-07 16:36:27 +03:00

11 lines
274 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));
}
}