2024/8/29 Hot100 binaryTree与每日一题 未开始

This commit is contained in:
linlihong 2024-08-29 17:29:34 +08:00
parent 4dbf7ab57e
commit 29c55c38a9
2 changed files with 36 additions and 0 deletions

View File

@ -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<List<Integer>> levelOrder(TreeNode root) {
}
}

View File

@ -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) {
}
}