Fix README.md typo (#279)

pull/281/head
Rahul Rajeev Pillai 2021-05-03 15:56:11 +05:30 committed by GitHub
parent 4d484eca5d
commit e8660430d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -17,11 +17,12 @@
1. [Karatsuba](Multiplication/karatsuba.cpp)
## Linked Lists
1. [All possible insertions](Linked-Lists/all-possible-insertions.cpp)
1. [All possible insertions](Linked-Lists/all-possible-insertion.cpp)
2. [Singly linked lists](Linked-Lists/singly.cpp)
3. [doubley linked lists](Linked-Lists/doubly.cpp)
4. [Circular linked lists](Linked-Lists/circular.cpp)
5. [Reversing a linked lists](Linked-Lists/reverse.cpp)
5. [Merging two sorted linked lists](Linked-Lists/merge.cpp)
## Searching
1. [Linear Search](Searching/linear-search.cpp)