12 2022 档案

摘要:209. 长度最小的子数组 力扣题目链接 我的代码:错误的滑动窗口 public int minSubArrayLen(int target, int[] nums) { int left = 0, right = 0; int sum = nums[0]; int count = 10000; f 阅读全文
posted @ 2022-12-18 21:55 Cyrui_13 阅读(39) 评论(0) 推荐(0)
摘要:27. 移除元素 力扣题目链接 我的代码:左右指针交换,O(n) class Solution { public int removeElement(int[] nums, int val) { if (nums.length == 0) { return 0; } int count = 0; f 阅读全文
posted @ 2022-12-12 21:59 Cyrui_13 阅读(28) 评论(0) 推荐(0)
摘要:官网:https://qpdf.readthedocs.io/en/stable/ 在该网站下载 https://github.com/qpdf/qpdf/releases/ 解压并进入bin目录下,在该目录下打开cmd,输入代码: qpdf --decrypt infile.pdf outfile 阅读全文
posted @ 2022-12-07 17:49 Cyrui_13 阅读(283) 评论(1) 推荐(0)