aeharding / aeharding/timeout-sort
Works incorrectly for negative integers
Open
- Dominant language
- JavaScript
- Stars
- 5
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
Example
```
timeoutSort([-5, -20, -642, -80], function cbSort(sortedArray, err) {
if (err) console.log("You suck!");
console.log(sortedArray);
});
```
Result:
```
[-5, -20, -642, -80]
```
Expected result:
```
[-642, -80, -20, -5]
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.