Day5
This commit is contained in:
12
167. Two Sum II - Input Array Is Sorted/Program.cs
Normal file
12
167. Two Sum II - Input Array Is Sorted/Program.cs
Normal 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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user