chore: update invalid path on readme

pull/220/head
Ming Tsai 2021-04-16 15:09:31 -04:00
parent d040732605
commit 916e0b1f37
5 changed files with 0 additions and 54 deletions

View File

@ -17,14 +17,6 @@
11. [Data before and after sorting](c-or-cpp/data-before-sort.cpp)
12. [Even and odd no. ](c-or-cpp/even-and-odd.c)
### Python
1. [Counting Inversions](python/count-inversions.py)
### JavaScript
1. [Counting Inversions](js/count-inversions.js)
### Java
1. [Counting Inversions](java/count-inversions.java)

View File

@ -17,12 +17,3 @@
3. [Circular Linked List](java/circular.java)
4. [Reverse Linked List](java/reverse.java)
5. [Clone Linked List with Random Pointer](java/clone-linkedlist-with-rnd-pointer.java)
### JavaScript
1. [Singly Linked List](js/singly.js)
### Python
1. [Singly Linked List](Python/singly.py)
2. [Doubly Linked List](Python/doubly.py)

View File

@ -8,18 +8,6 @@
4. [finding squareroot using binary search](c-or-cpp/sqrt-monotonic-binary-search.cpp)
5. [Interpolation Search](c-or-cpp/interpolation-search.cpp)
### Python
1. [Linear Search](python/linear-search.py)
2. [Binary Search](python/binary-search.py)
3. [Jump Search](python/jump-search.py)
### JavaScript
1. [Linear Search](js/linear-search.js)
2. [Binary Search ( Iterative )](js/binary-search.js)
3. [Binary Search ( Recursive )](js/binary-search-recursive.js)
### Java
1. [Linear Search](java/linear-search.java)

View File

@ -15,13 +15,6 @@
11. [Comb Sort](c-or-cpp/comb-sort.cpp)
12. [3 Way Quick Sort](c-or-cpp/3way_quick_sort.cpp)
### Python
1. [Bubble Sort](python/bubble-sort.py)
2. [Insertion Sort](python/insertion-sort.py)
3. [Selection Sort](python/selection-sort.py)
4. [Quick Sort](python/quick-sort.py)
### Java
@ -35,11 +28,6 @@
8. [Heap Sort Algo](java/heap-sort.java)
9. [Insertion Sort algo](java/insertion-sort.java)
10. [Selection Sort algo](java/selection-sort.java)
### JavaScript
1. [Bubble Sort](js/bubble-sort.js)
2. [Insertion Sort](js/insertion-sort.js)
3. [Selection Sort](js/selection-sort.js)
### Golang
1. [Insertion Sort](go/insertion-sort.go)

View File

@ -11,15 +11,6 @@
7. [Permutation of String](c-or-cpp/Permutation-of-String.c)
8. [Count Words](c-or-cpp/count-words.c)
### C#
1. [Palindrome Check](csharp/palindrome.cs)
### JavaScript
1. [Palindrome Check](js/palindrome.js)
2. [All subsequences](js/sequence.js)
### Java
1. [Palindrome Check](java/palindrome.java)
@ -28,10 +19,6 @@
4. [Rabin Karp String Searching](java/rabin-karp.cpp)
5. [String Tokenizer](java/tokenizer.java)
### Python
1. [Palindrome Check](python/palindrome.py)
### Rust
1. [Palindrome Check](rust/palindrome/README.md)