docs: add index using relative link

pull/13/head
Ming Tsai 2021-01-17 12:58:22 -04:00
parent 242205af60
commit 706620a28f
2 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
# Sorting algorithms # Sorting algorithms
### c-or-cpp ### C or C++
1. [Bubble Sort](c-or-cpp/bubble-sort.cpp) 1. [Bubble Sort](c-or-cpp/bubble-sort.cpp)
2. [Insertion Sort](c-or-cpp/insertion-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) 1. [Bubble Sort](python/bubble-sort.py)

View File

@ -1,5 +1,5 @@
# String operations # String operations
### c-or-cpp ### C or C++
1. [Palindrome Check](c-or-cpp/palindrome.c) 1. [Palindrome Check](c-or-cpp/palindrome.c)