chore: Migrate JavaScript to new directory structure (#211)

* chore: Migrate JavaScript to new directory structure

* chore: Migrate JavaScript to new directory structure

* Fix typo discovered by codespell
pull/214/head
Christian Clauss 2021-04-16 14:30:30 +02:00 committed by GitHub
parent 799fff7ecd
commit c21a573a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# JavaScript
## Arrays
1. [Count Inversions](arrays/count-inversions.js)
## Linked Lists
1. [Singly](linked_lists/singly.js)
## Searching
1. [Binary Search Recursive](searching/binary-search-recursive.js)
2. [Binary Search](searching/binary-search.js)
3. [Linear Search](searching/linear-search.js)
## Sorting
1. [Bubble Sort](sorting/bubble-sort.js)
2. [Insertion Sort](sorting/insertion-sort.js)
3. [Selection Sort](sorting/selection-sort.js)
## Strings
1. [Palindrome](strings/palindrome.js)
2. [Sequence](strings/sequence.js)