Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions test_case_generator.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <bits/stdc++.h>
using namespace std;
int main()
{
srand(time(0)); // seeding the rand with system time
int t= rand() % 10 + 1; // printing number between
// range 1 to 100
cout<<t<<"\n";// number of testcase
for(int i=0;i<t;i++){
int n=rand()%100+1;
cout<<n<<"\n"; // random array size
for(int j=0;j<n;j++)cout<<rand()%100+1<<" "; // random array
cout<<"\n";
}
return 0;
}