2023年6月29日
摘要: package leetcode; public class Tree { private Integer[] treeArr; private int treeDep; private int wordLen = 1; private int gap = 3; // gap >= 3 public 阅读全文
posted @ 2023-06-29 17:28 laremehpe 阅读(6) 评论(0) 推荐(0) 编辑
摘要: public class ListNode { public int val; public ListNode next; public ListNode() {} public ListNode(int val) { this.val = val; } public ListNode(int va 阅读全文
posted @ 2023-06-29 17:27 laremehpe 阅读(7) 评论(0) 推荐(0) 编辑