Skip to content
Snippets Groups Projects
Commit 1bc397cb authored by Yasya Rusyda's avatar Yasya Rusyda
Browse files

add print

parent 7389d964
No related merge requests found
...@@ -61,7 +61,7 @@ void radixsort(int arr[], int n) ...@@ -61,7 +61,7 @@ void radixsort(int arr[], int n)
void print(int arr[], int n) void print(int arr[], int n)
{ {
for (int i = 0; i < n; i++) for (int i = 0; i < n; i++)
cout << arr[i] << " "; cout << arr[i] << "\n";
} }
void rng(int* arr,int n){ void rng(int* arr,int n){
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment