Skip to content

Commit 347e0f1

Browse files
authored
Update main_single.cc
1 parent 03eaf70 commit 347e0f1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

main_single.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ void *singleThread_sort(void *arg)
1414
int main()
1515
{
1616
vector<int> inputvect;
17-
int sz = 50;
17+
int sz ;
18+
cout<<"Input Array size \n";
19+
cin>>sz;
1820
clock_t t1, t2;
1921
for (int i = 0; i < sz; i++)
2022
{

0 commit comments

Comments
 (0)