Merge branch 'master' into master

This commit is contained in:
Ayaan Khan 2020-06-19 21:39:02 +05:30 committed by GitHub
commit f541be9724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,6 @@ int main() {
quickSort(arr, 0, size);
std::cout << "Sorted array\n";
show(arr, size);
delete[] arr;
delete [] arr;
return 0;
}