Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/azl397985856/leetcode
Browse files Browse the repository at this point in the history
  • Loading branch information
luzhipeng committed Jun 25, 2019
2 parents 5c47873 + 83fbb65 commit 39e2696
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion problems/144.binary-tree-preorder-traversal.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ var preorderTraversal = function(root) {
if (!root) return [];
const ret = [];
const stack = [root];
let left = root.left;
let t = stack.pop();

while(t) {
Expand Down

0 comments on commit 39e2696

Please sign in to comment.