Public signup for this instance is disabled. Go to our Self serve sign up page to request an account. Report potential security issues privately
On line 86 of ByteSearch.java, it looks like the expression should be:
k >= start;
rather than:
k <= start;
since the array is looping backwards and should finish once it reaches start.