Skip to content

Commit

Permalink
Update expression-add-operators.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 committed Jun 6, 2016
1 parent a15a6f0 commit 5d5c7a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++/expression-add-operators.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Solution {
const int& operand1, const int& operand2,
vector<string> *expr, vector<string> *result) {
if (pos == num.length() && operand1 + operand2 == target) {
result->emplace_back(move(join(*expr)));
result->emplace_back(join(*expr));
} else {
int val = 0;
string val_str;
Expand Down

0 comments on commit 5d5c7a4

Please sign in to comment.