Update sorting/selection_sort_recursive.c

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

View File

@ -49,7 +49,8 @@ int findIndex(const int *arr, const int size)
/**
* @brief Selection Sort algorithm implemented using recursion
* @param arr array to be sorted
* @param size size of array
* @param size size of the array
* @returns void
*/
void selectionSort(int *arr, const int size)
{