docs: Update guide of counting sort implementation heading add specific language(#26859) (#29407)

This commit is contained in:
Ankit Sharma
2019-02-20 08:20:50 +05:30
committed by Randell Dawson
parent 1b4122cfef
commit 6994353c99

View File

@ -29,7 +29,7 @@ the output sequence.
next data 1 at an index 1 smaller than this index. next data 1 at an index 1 smaller than this index.
``` ```
### Implementation ### Implementation in JavaScript
```js ```js
let numbers = [1, 4, 1, 2, 7, 5, 2]; let numbers = [1, 4, 1, 2, 7, 5, 2];
let count = []; let count = [];