上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页
2023年8月1日
摘要: 阅读全文
posted @ 2023-08-01 10:42 laremehpe 阅读(53) 评论(0) 推荐(0) 编辑
2023年7月29日
摘要: class Solution { private: void getNext(int* arr, string str) { int len = str.length(); arr[0] = 0; int j = 0; for (int i = 1; i < len; i++) { while (j 阅读全文
posted @ 2023-07-29 14:50 laremehpe 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 找到build.gradle文件,并添加: debug{ applicationIdSuffix '.debug'} 创建debug文件夹如下:app_name 改为 debug版app的名称,修改图标同理,建立和release版相同的路径,添加相关资源文件! 打包文件: 阅读全文
posted @ 2023-07-29 00:33 laremehpe 阅读(48) 评论(0) 推荐(0) 编辑
2023年7月28日
摘要: // ==UserScript== // @name zhihu // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // 阅读全文
posted @ 2023-07-28 11:19 laremehpe 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 首先准备好这几样工具: apktool:https://ibotpeaches.github.io/Apktool/ dex2jar:https://github.com/pxb1988/dex2jar jd-gui: https://github.com/java-decompiler/jd-gu 阅读全文
posted @ 2023-07-28 01:38 laremehpe 阅读(20) 评论(0) 推荐(0) 编辑
2023年7月24日
摘要: 找到options选项:(最后一个) 搜索Duplicate: 连续点击Remove三次,彻底删掉快捷键 然后搜索linedelete: 同上点击remove移除默认快捷键,然后: 输入快捷键: 点击Assign即可: > LineDelete > ctrl + d //删除当前行> InsertN 阅读全文
posted @ 2023-07-24 11:47 laremehpe 阅读(160) 评论(0) 推荐(0) 编辑
2023年7月20日
摘要: public static int NumberLength(Integer num) { int len = 1; while (num >= 10) { num /= 10; len++; } return len; } public static int NumberAt(Integer nu 阅读全文
posted @ 2023-07-20 11:19 laremehpe 阅读(44) 评论(0) 推荐(0) 编辑
2023年7月19日
摘要: @Test public void virtualMain() { int[][] matrix = generateMatrix(9); MyArray.printSquareArray(matrix, 2); } public int[][] generateMatrix(int n) { in 阅读全文
posted @ 2023-07-19 13:53 laremehpe 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 检查一下这些地方 阅读全文
posted @ 2023-07-19 10:47 laremehpe 阅读(2298) 评论(0) 推荐(0) 编辑
摘要: // ==UserScript== // @name remove baidu ads // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @aut 阅读全文
posted @ 2023-07-19 10:07 laremehpe 阅读(22) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 18 下一页