Update sorting/selection_sort_recursive.c

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
DhruvPasricha 2021-02-25 00:36:39 +05:30 committed by GitHub
parent d957dacec5
commit 30b43869d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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