09 2022 档案

摘要:class MyLinkedList { int size=0; class Node{ int val; Node next; Node prev; Node(int val,Node next,Node prev){ this.val=val; this.next=next; this.prev 阅读全文
posted @ 2022-09-23 11:54 Kotonoha 阅读(38) 评论(0) 推荐(0)
摘要://1 class Solution { int cnt=0; public boolean canFormArray(int[] arr, int[][] pieces) { return dfs(0,arr,pieces); } boolean dfs(int idx,int[] arr,int 阅读全文
posted @ 2022-09-22 16:23 Kotonoha 阅读(30) 评论(0) 推荐(0)