Skip to content

Instantly share code, notes, and snippets.

@cnblogs-dudu
Created November 26, 2016 09:18
Show Gist options
  • Save cnblogs-dudu/c9fde76518998e5386f6e66bd89b281a to your computer and use it in GitHub Desktop.
Save cnblogs-dudu/c9fde76518998e5386f6e66bd89b281a to your computer and use it in GitHub Desktop.
less than sign is not encoded
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