From 83d2865c21cc2ed84364c4c6a531fd7fb728832d Mon Sep 17 00:00:00 2001 From: hbingzhi Date: Fri, 16 Dec 2022 15:45:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E4=BA=8C=E5=8F=89=E6=A0=91?= =?UTF-8?q?=E5=B1=82=E5=BA=8F=E9=81=8D=E5=8E=86637Java=E8=A7=A3=E6=B3=95?= =?UTF-8?q?=E4=B8=AD=E6=B2=A1=E6=9C=89=E5=BF=85=E8=A6=81=E7=9A=84=E8=AF=AD?= =?UTF-8?q?=E5=8F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- problems/0102.二叉树的层序遍历.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0102.二叉树的层序遍历.md b/problems/0102.二叉树的层序遍历.md index 9985971f..8de91e40 100644 --- a/problems/0102.二叉树的层序遍历.md +++ b/problems/0102.二叉树的层序遍历.md @@ -1072,7 +1072,6 @@ public class N0637 { que.offerLast(root); while (!que.isEmpty()) { - TreeNode peek = que.peekFirst(); int levelSize = que.size(); double levelSum = 0.0; @@ -2970,3 +2969,4 @@ impl Solution { +