Merge remote-tracking branch 'origin/master'

This commit is contained in:
Cool 2024-08-29 20:10:51 +08:00
commit 1eaa8169f3
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) {
}
}