Skip to content

Commit

Permalink
Update basic-calculator-iv.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
kamyu104 authored Jan 22, 2018
1 parent e52bc94 commit 28a1893
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++/basic-calculator-iv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class Poly {
return !s.empty() && std::all_of(s.begin(), s.end(), ::isdigit);
}

vector<string> merge(const vector<string>& arr1, const vector<string>& arr2) const {
vector<string> merge(const vector<string>& arr1, const vector<string>& arr2) const { // Time: O(d)
vector<string> result;
int i = 0, j = 0;
while (i < arr1.size() || j < arr2.size()) {
Expand Down

0 comments on commit 28a1893

Please sign in to comment.