Update Binary Search.cpp

This commit is contained in:
Faizan Ahamed
2020-04-26 14:56:30 +05:30
committed by GitHub
parent 6616ae320b
commit 9813693baa

View File

@@ -26,6 +26,6 @@ int res = binary_search(a, 0, n - 1, key);
if (res != -1)
std::cout << key << " found at index " << res << std::endl;
else
std::cout << key << " not found" << endl::endl;
std::cout << key << " not found" << std::endl;
return 0;
}