Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2aa8748

Browse files
committed
binary tree problems
1 parent 77898b4 commit 2aa8748

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BinaryTreeYT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public static void postorder(Node root) {
5050
postorder(root.left);
5151
postorder(root.right);
5252
System.out.println(root.data + " ");
53-
;
53+
5454
}
5555
public static void levelOrder(Node root) {
5656
if (root == null) {

0 commit comments

Comments
 (0)