From 2220849678f7bb46d4737334945fa1a03e888118 Mon Sep 17 00:00:00 2001 From: Anika Kamath <87904385+anika-kamath@users.noreply.github.com> Date: Fri, 7 Oct 2022 15:37:47 +0530 Subject: [PATCH] Delete counting_sort.c --- counting_sort.c | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 counting_sort.c diff --git a/counting_sort.c b/counting_sort.c deleted file mode 100644 index 699f22ad..00000000 --- a/counting_sort.c +++ /dev/null @@ -1,33 +0,0 @@ -#include - -void counting_sort(int a[],int n,int max) -{ - int count[50]={0},i,j; - - for(i=0;imax) - max=a[i]; - } - - counting_sort(a,n,max); - return 0; -} \ No newline at end of file