Skip to content

Commit

Permalink
Update wiggle-sort-ii.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 committed Jan 1, 2016
1 parent c8de93c commit 24b8907
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++/wiggle-sort-ii.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Solution {
} else if (Nums(j) < val) {
swap(Nums(j), Nums(n--));
} else {
j++;
++j;
}
}
}
Expand Down

0 comments on commit 24b8907

Please sign in to comment.