Update sorting/selection_sort_recursive.c

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
DhruvPasricha 2021-02-25 00:45:17 +05:30 committed by GitHub
parent 14553af668
commit 60a07e6346
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,6 +98,6 @@ int main()
{ {
/* Intializes random number generator */ /* Intializes random number generator */
srand(time(NULL)); srand(time(NULL));
test(); test(); // run self-test implementations
return 0; return 0;
} }