From be2135be65776d09ed1638d118777ccb2c5a58d5 Mon Sep 17 00:00:00 2001 From: Anika Kamath <87904385+anika-kamath@users.noreply.github.com> Date: Fri, 7 Oct 2022 15:48:44 +0530 Subject: [PATCH] Updated README with counting-sort.c --- algorithms/C/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/algorithms/C/README.md b/algorithms/C/README.md index a1188256..9db4e7fc 100644 --- a/algorithms/C/README.md +++ b/algorithms/C/README.md @@ -55,6 +55,7 @@ - [Quick Sort](sorting/quick-sort.c) - [Shell Sort](sorting/shell-sort.c) - [Radix Sort](sorting/radix-sort.c) +- [Counting Sort](sorting/counting-sort.c) ## Strings