From bce00a5f12b3db6f8e66f24a722211433a45900a Mon Sep 17 00:00:00 2001 From: Sachin Pawar <40672029+pwrsachin@users.noreply.github.com> Date: Wed, 30 Oct 2019 20:24:08 +0530 Subject: [PATCH] updated no need to include so many libraries --- Algorithms/Sorting/countingsort1.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Algorithms/Sorting/countingsort1.cpp b/Algorithms/Sorting/countingsort1.cpp index 593fbad..e78fd0e 100644 --- a/Algorithms/Sorting/countingsort1.cpp +++ b/Algorithms/Sorting/countingsort1.cpp @@ -3,8 +3,7 @@ //Algorithms - Sorting //Author: derekhh -#include -#include +#include using namespace std; int cnt[100]; @@ -22,4 +21,4 @@ int main() cout << cnt[i] << " "; cout << endl; return 0; -} \ No newline at end of file +}