From c315db948ac9623292cc496133d735a412935cb0 Mon Sep 17 00:00:00 2001 From: DhruvPasricha <78498002+DhruvPasricha@users.noreply.github.com> Date: Thu, 25 Feb 2021 17:31:15 +0530 Subject: [PATCH] added a one-line comment to tell what the library/header is for --- sorting/selection_sort_recursive.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sorting/selection_sort_recursive.c b/sorting/selection_sort_recursive.c index 5d863cd9..be997df7 100644 --- a/sorting/selection_sort_recursive.c +++ b/sorting/selection_sort_recursive.c @@ -4,11 +4,10 @@ * @brief [Selection Sort](https://en.wikipedia.org/wiki/Selection_sort) * implementation using recursion. */ -#include -#include -#include -#include -#include +#include /// for assert +#include /// for IO operations +#include /// for dynamic memory allocation +#include /// for random numbers generation /** * @brief Swapped two numbers using pointer