complete-intro-to-computer-science
complete-intro-to-computer-science copied to clipboard
Complete Intro to Computer Science, as taught by Brian Holt for Frontend Masters
Hi , loving the course, just spotted a small typo.
"This class for" to "This class is for" "they" to "these" added an I before "just wanted to call..."
Changes `inorder[2]` from 5 to 4 Before: After: ``` // inorder [1, 3, 4, 6, 7, 8, 10, 13, 14] ```
Fix typo: /from/ unless performance cause a problem later. /to/ unless performance cause a problem later.
Some accidental typos that I found that I fixed
Hello, teacher @btholt I figure out the test case of `Radix Sort` on [CodeSandBox](https://codesandbox.io/s/algorithms-exercises-8kdjr?file=/specs/radix-sort/radix-sort.test.js) which using `sort` method without passing `compareFunction`, this will using `char compare` instead of `number compare`....
Fixing scroll overflow to auto
shifting array make it reindex the array. is n't it a better solution ? ```javascript const mergeArr = (arr1, arr2) => { const mergedArr = []; let arr1Idx = 0,...