-
Notifications
You must be signed in to change notification settings - Fork 673
New issue
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
Lookup count in binary-search test is not correct #51
Comments
It seems like the test is biased toward a simpler implementation of a binary-search that just checks if the value is greater or less than the middle and recurses such as https://github.com/Tadwork/exercises/blob/master/binary-search/index.js#L23 if however there is an extra check to see if the middle value is the number we are looking for ( https://github.com/Tadwork/exercises/blob/master/binary-search/index.js#L13 ) that will change the number of times the search function is called and the lookup count. I think the two implementations are of similar O(log(n)) complexity and the extra check amounts to a constant change... it might pay to check for 11 or 13 or even just to add a comment , but changing the test will break it for those who implement the simpler (but still correct) way. |
@Tadwork You brought a very good point. |
My solution ended up with 11 lookups. Merging the PR would be good. |
First of all, thanks for this wonderful project.
When I started to do the binary-search challenge, I found there maybe some issues about the last test(the lookup count one). I have written 2 implementations, both implementations has passed all the tests except last one.
First one: the lookup count is 5000 in this implementation. I think maybe it is because the native implementation of
array.slice
has touched theget
property. So I implemented the second one.Second one: the lookup count is 11, not 13.
So I guess maybe 13 is not correct. Could you help me to check this out? Thanks!
The text was updated successfully, but these errors were encountered: