From 29c55c38a9d0ef633163ed5c546a020a8881f8d1 Mon Sep 17 00:00:00 2001 From: linlihong <747682928@qq.com> Date: Thu, 29 Aug 2024 17:29:34 +0800 Subject: [PATCH] =?UTF-8?q?2024/8/29=20Hot100=20binaryTree=E4=B8=8E?= =?UTF-8?q?=E6=AF=8F=E6=97=A5=E4=B8=80=E9=A2=98=20=E6=9C=AA=E5=BC=80?= =?UTF-8?q?=E5=A7=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/cool/hot100/binary_tree/Num102.java | 21 +++++++++++++++++++ .../LeetCode20240829.java | 15 +++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 src/main/java/com/cool/hot100/binary_tree/Num102.java create mode 100644 src/main/java/com/cool/one_question_per_day/LeetCode20240829.java diff --git a/src/main/java/com/cool/hot100/binary_tree/Num102.java b/src/main/java/com/cool/hot100/binary_tree/Num102.java new file mode 100644 index 0000000..b1d4ae8 --- /dev/null +++ b/src/main/java/com/cool/hot100/binary_tree/Num102.java @@ -0,0 +1,21 @@ +package com.cool.hot100.binary_tree; + +import java.util.List; + +/** + * Created with IntelliJ IDEA. + * + * @Author: Cool + * @Date: 2024/08/28/17:24 + * DayNumber 4 + * Hard 2 + * Level ? + */ +public class Num102 { + + + public List> levelOrder(TreeNode root) { + + } + +} diff --git a/src/main/java/com/cool/one_question_per_day/LeetCode20240829.java b/src/main/java/com/cool/one_question_per_day/LeetCode20240829.java new file mode 100644 index 0000000..db565b4 --- /dev/null +++ b/src/main/java/com/cool/one_question_per_day/LeetCode20240829.java @@ -0,0 +1,15 @@ +package com.cool.one_question_per_day; + +/** + * Created with IntelliJ IDEA. + * + * @Author: Cool + * @Date 2024/08/29 + * DayNumber 1 + * Hard 1 + */ +public class LeetCode20240829 { + public boolean satisfiesConditions(int[][] grid) { + + } +}