Skip to content

Commit 0cb6052

Browse files
refactor for format
1 parent e3874d6 commit 0cb6052

File tree

1 file changed

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

1 file changed

+1
-0
lines changed

src/main/java/com/fishercoder/solutions/_662.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ public int widthOfBinaryTree(TreeNode root) {
8080
if (root == null) {
8181
return 0;
8282
}
83+
8384
Queue<Map.Entry<TreeNode, Integer>> queue = new LinkedList<>();
8485
queue.offer(new AbstractMap.SimpleEntry<>(root, 1));
8586
int max = 1;

0 commit comments

Comments
 (0)