Resolve conflicts

This commit is contained in:
Rohit Tanwar
2018-01-01 15:59:52 +05:30
committed by GitHub
parent 775f43887b
commit 72bbf96b8f

View File

@ -14,6 +14,6 @@ const sortedIndex = (arr, n) => {
```
```js
sortedIndex([5,3,2,1], 4); //1
sortedIndex([5,3,2,1], 4); // 1
sortedIndex([30,50],40); // 1
```