We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pretty-algorithms/algorithms/search/binary-search/binary-search.ts
Line 12 in e97dcb7
The text was updated successfully, but these errors were encountered:
It's very unlikely that you have numbers so huge to overflow , especially on the client
Sorry, something went wrong.
You can use (start + ((end - start) / 2) to avoid the overflow, in case that happens.
(start + ((end - start) / 2)
No branches or pull requests
pretty-algorithms/algorithms/search/binary-search/binary-search.ts
Line 12 in e97dcb7
The text was updated successfully, but these errors were encountered: