/.txt
Created
November 26, 2016 09:18
less than sign is not encoded
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i(i<j) | |
```javascript | |
function binarySearch1(a, target) { | |
while(start <= end) { | |
var mid = ~~((start + end) >> 1); | |
} | |
} | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment