Skip to content

Commit

Permalink
Formatted the code
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 29, 2023
1 parent 457b72e commit ff2b971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Data-Structures/Trees/09-pre-order-iterative.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public:
if (root->left != NULL) {
st.push(root->left);
}

}
return ans;
}
Expand Down
2 changes: 1 addition & 1 deletion Data-Structures/Trees/10-post-order-twoStack.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public:
st1.push(root->right);
}
}

while(!st2.empty()){
ans.push_back(st2.top()->val);
st2.pop();
Expand Down

0 comments on commit ff2b971

Please sign in to comment.