awesome-coding-js icon indicating copy to clipboard operation
awesome-coding-js copied to clipboard

Algorithms and data structures implemented in JavaScript, with detailed explanations and tutorials

Results 19 awesome-coding-js issues
Sort by recently updated
recently updated
newest added

您好,感觉字符串-正则表达式那道题的题目里第二个符号应该是'*',而不应该是''吧?

- promise article enhancement - fixed partial spelling issues - fixed partial code issues

function FirstAppearingOnce() { let minIndex = 256; let strIndex = 0; for (let i = 0; i < 256; i++) { if (container[i] >= 0 && container[i] < minIndex) {...

``` function Permutation(str) { const queue = str.split(''); queue.sort(); return PermutationCore(queue); } function PermutationCore(queue) { let result = []; if (queue.length === 1) { return queue; } queue.forEach((item, index) =>...