Update sorting/selection_sort_recursive.c

Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
This commit is contained in:
DhruvPasricha 2021-02-24 23:58:06 +05:30 committed by GitHub
parent f8c9ea04f9
commit 6c874bd7cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ void swap(int *first, int *second)
/**
* @brief returned the index having minimum value using recursion
* @param arr array to be sorted
* @param arr array to be sorted
* @param size size of array
*/
int findIndex(const int *arr, const int size)