From e8660430d8700f01f691786f7aed4a19e74e89c0 Mon Sep 17 00:00:00 2001 From: Rahul Rajeev Pillai <66192267+LightMonarch@users.noreply.github.com> Date: Mon, 3 May 2021 15:56:11 +0530 Subject: [PATCH] Fix README.md typo (#279) --- algorithms/CPlusPlus/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/algorithms/CPlusPlus/README.md b/algorithms/CPlusPlus/README.md index a4fd7175..10b7ebfa 100644 --- a/algorithms/CPlusPlus/README.md +++ b/algorithms/CPlusPlus/README.md @@ -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)