10 lines
227 B
C#
10 lines
227 B
C#
namespace _704._Binary_Search
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(new Solution().Search(new int[] { -1, 0, 3, 5, 9, 12 }, 13));
|
|
}
|
|
}
|
|
} |