This commit is contained in:
Electrominch
2022-10-07 00:48:29 +03:00
parent c388b14c3f
commit 0b88604037
20 changed files with 414 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
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));
}
}
}