mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
Merge branch 'master' of https://github.com/ayaankhan98/C-Plus-Plus
This commit is contained in:
commit
7cd335d371
@ -16,8 +16,8 @@
|
||||
*/
|
||||
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
/**
|
||||
*
|
||||
@ -96,6 +96,6 @@ int main() {
|
||||
for (int i = 0; i < n; ++i) std::cin >> arr[i];
|
||||
CombSort(arr, 0, n);
|
||||
for (int i = 0; i < n; ++i) std::cout << arr[i] << ' ';
|
||||
delete [] arr;
|
||||
delete[] arr;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user