Skip to content

Commit

Permalink
Update gen.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Same0620 authored Sep 27, 2024
1 parent 504616c commit 639a991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pA/gen/gen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ int main(int argc, char* argv[]) {
cout << n << ' ' << q << "\n";

vector<int> v;
for(int i=1;i<=n;i++)v.push_back(i);
for(int i=1;i<n;i++)v.push_back(i);
shuffle( v.begin(), v.end() );
int it = 0;

Expand Down

0 comments on commit 639a991

Please sign in to comment.