Skip to content

Commit 639a991

Browse files
authored
Update gen.cpp
1 parent 504616c commit 639a991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pA/gen/gen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ int main(int argc, char* argv[]) {
1212
cout << n << ' ' << q << "\n";
1313

1414
vector<int> v;
15-
for(int i=1;i<=n;i++)v.push_back(i);
15+
for(int i=1;i<n;i++)v.push_back(i);
1616
shuffle( v.begin(), v.end() );
1717
int it = 0;
1818

0 commit comments

Comments
 (0)