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)