- 博客(5)
- 收藏
- 关注
原创 消除连续的1
public class Del1 { public static void main(String[] args) { Scanner in = new Scanner(System.in); String n_m_line = in.nextLine(); String[] tokens = n_m_line.split(" "); int[] n_m = new int[2]; n_m[0] = Integer.
2021-09-09 19:53:15 209
原创 9月6号笔试题
第二题 public ListNode sortList(ListNode head) { ListNode temp = head; TreeMap<Integer, Integer> map = new TreeMap<>(); while (temp != null) { map.put(temp.val, map.getOrDefault(temp.val, 0) + 1); temp = temp.next;
2021-09-06 19:32:08 92
原创 小米笔试题
package FreeTime; import java.util.ArrayList; /** * @author s00524198 * @version 1.0.0 * @date 2021/9/1 20:22 */ public class XM { public static void main(String[] args) { } public ArrayList<Integer> getRes(int h1, int h2) { .
2021-09-01 20:28:19 121
原创 HW笔试第2题
package FreeTime; import java.util.Arrays; import java.util.Scanner; /** * @author s00524198 * @version 1.0.0 * @date 2021/8/18 19:31 */ public class HWBS2_2 { public static void main(String[] args) { Scanner in = new Scanner(System.in).
2021-08-18 20:22:01 182
原创 接雨水问题
package FreeTime; import java.util.Scanner; import java.util.Stack; import java.util.ArrayList; /** * @author s00524198 * @version 1.0.0 * @date 2021/8/11 19:38 */ public class HWBS { /* 2 4 0,-1,-2,0 3 .
2021-08-11 20:23:43 102
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人