Skip to content

Commit

Permalink
core: add verifyPostorder
Browse files Browse the repository at this point in the history
  • Loading branch information
elonehoo committed Apr 23, 2022
1 parent 3f5b2f4 commit 0653bf0
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,3 +359,4 @@ function recur(postorder:number[],i:number,j:number):boolean{
return p == j && recur(postorder, i, m - 1) && recur(postorder, m, j - 1);

}

0 comments on commit 0653bf0

Please sign in to comment.