-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Added C++ Solution #112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added C++ Solution #112
Conversation
31. Next Permutation C++ solution
cpp/_31.cpp
Outdated
public: | ||
void nextPermutation(vector<int>& nums) { | ||
|
||
int i1,i2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one variable per line please.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure
cpp/_31.cpp
Outdated
for(auto i:nums){ | ||
cout << i << " "; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove debug statements.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure
Hey @fishercoder1534, changes are done. |
File contains