2024/8/29 Hot100 binaryTree与每日一题 未开始
This commit is contained in:
parent
4dbf7ab57e
commit
29c55c38a9
|
@ -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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue