From 242205af602b8f9506be12627086018f50def04a Mon Sep 17 00:00:00 2001 From: Ming Tsai <37890026+ming-tsai@users.noreply.github.com> Date: Sun, 17 Jan 2021 11:41:47 -0400 Subject: [PATCH] docs(c-or-cpp): add insertion sort to index --- sorting/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sorting/README.md b/sorting/README.md index 8a17aa79..85453331 100644 --- a/sorting/README.md +++ b/sorting/README.md @@ -3,6 +3,7 @@ ### c-or-cpp 1. [Bubble Sort](c-or-cpp/bubble-sort.cpp) +2. [Insertion Sort](c-or-cpp/insertion-sort.cpp) ### python