Skip to content

Commit 3a37876

Browse files
update 145
1 parent 4665ffa commit 3a37876

File tree

1 file changed

+1
-2
lines changed
  • src/main/java/com/fishercoder/solutions/firstthousand

1 file changed

+1
-2
lines changed

src/main/java/com/fishercoder/solutions/firstthousand/_145.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ public static class Solution3 {
7272
* recursive solution is trivial.
7373
*/
7474
public List<Integer> postorderTraversal(TreeNode root) {
75-
List<Integer> result = new ArrayList();
76-
return post(root, result);
75+
return post(root, new ArrayList());
7776
}
7877

7978
List<Integer> post(TreeNode root, List<Integer> result) {

0 commit comments

Comments
 (0)