From 706620a28f0470deae771bfb4d0be0faf2aa93d1 Mon Sep 17 00:00:00 2001 From: Ming Tsai Date: Sun, 17 Jan 2021 12:58:22 -0400 Subject: [PATCH] docs: add index using relative link --- sorting/README.md | 5 +++-- strings/README.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/sorting/README.md b/sorting/README.md index 85453331..5cfb9dfe 100644 --- a/sorting/README.md +++ b/sorting/README.md @@ -1,11 +1,12 @@ # Sorting algorithms -### c-or-cpp +### C or C++ 1. [Bubble Sort](c-or-cpp/bubble-sort.cpp) 2. [Insertion Sort](c-or-cpp/insertion-sort.cpp) +3. [Selection Sort](c-or-cpp/selection-sort.cpp) -### python +### Python 1. [Bubble Sort](python/bubble-sort.py) diff --git a/strings/README.md b/strings/README.md index 054539aa..362cc48a 100644 --- a/strings/README.md +++ b/strings/README.md @@ -1,5 +1,5 @@ # String operations -### c-or-cpp +### C or C++ 1. [Palindrome Check](c-or-cpp/palindrome.c)