From 1bc397cbfbe034bb46c78e7dd044448777e3325f Mon Sep 17 00:00:00 2001
From: Yasya Rusyda <yasyars@Yasyas-MacBook-Pro.local>
Date: Thu, 11 Apr 2019 16:43:20 +0700
Subject: [PATCH] add print

---
 src/radix_sort_seq.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/radix_sort_seq.cpp b/src/radix_sort_seq.cpp
index c411285..4605ae9 100644
--- a/src/radix_sort_seq.cpp
+++ b/src/radix_sort_seq.cpp
@@ -61,7 +61,7 @@ void radixsort(int arr[], int n)
 void print(int arr[], int n) 
 { 
     for (int i = 0; i < n; i++) 
-        cout << arr[i] << " "; 
+        cout << arr[i] << "\n"; 
 } 
   
 void rng(int* arr,int n){
-- 
GitLab