Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
1eaa8169f3
|
@ -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