摘要: 周赛链接:https://leetcode.cn/contest/weekly-contest-373/ 100139. 循环移位后的矩阵相似检查 不需要判断奇数还是偶数,题目要求最后两个矩阵是否相同,那么向左循环移动和向右循环移动意义是一样的 奇数行右移k次,$$a[i]==a[(i + k) % 阅读全文
posted @ 2023-11-26 18:43 lukelmouse 阅读(9) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/1449694/202209/1449694-20220920150024767-1110653596.png) 阅读全文
posted @ 2022-09-20 15:00 lukelmouse 阅读(26) 评论(0) 推荐(0) 编辑
摘要: ##什么东西都配置好了,代理也全下了,tmd就是不能抓包??? 在xml目录下新建一个文件夹 network_security_config 文件内填这些 <?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-c 阅读全文
posted @ 2022-09-04 23:46 lukelmouse 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 再也不用磨磨蹭蹭的到手机的WIFI设置里面手动输入IP地址和端口! 取消的时候,还要去点点点,真烦! 保存脚本 #!/bin/bash echo "\n Support " echo "设置默认代理 proxy set" echo "设置自定义代理 proxy set ****:8888" echo 阅读全文
posted @ 2022-08-31 13:43 lukelmouse 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 总结 kotlin data class 返回值最佳实践,使用ks! 字段全写默认值,不可空,取消全部问号! ks速度更快 并且支持N多数据类型 protobuf + json kt默认值只有两种方式可以获取 使用kapt, 就是使用注解 使用kt专属的反射包 ks 基于kapt注解 ks无论后端返 阅读全文
posted @ 2022-08-21 14:03 lukelmouse 阅读(77) 评论(0) 推荐(0) 编辑
摘要: Git 配置 # 全局 name git config --global user.name "John Doe" # 全局 邮箱 git config --global user.email johndoe@example.com ssh-keygen -t rsa -C "你的邮箱" # 然后把 阅读全文
posted @ 2022-05-06 10:04 lukelmouse 阅读(37) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/5aa8c2fbd3d1 直接把C:\Users\xxx.gradle里面的 gradle.properties 全部注释掉 阅读全文
posted @ 2021-11-05 13:12 lukelmouse 阅读(39) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/1449694/202106/1449694-20210620105654526-2031476958.png) 阅读全文
posted @ 2021-06-20 10:57 lukelmouse 阅读(248) 评论(0) 推荐(0) 编辑
摘要: 效果 源代码 import time from bs4 import BeautifulSoup import requests from selenium import webdriver # 原作 # https://blog.csdn.net/qq_40050586/article/detai 阅读全文
posted @ 2021-06-15 21:20 lukelmouse 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 传送门 代码 class MyStack { Queue<Integer> que1; Queue<Integer> que2; /** Initialize your data structure here. */ public MyStack() { que1 = new LinkedList< 阅读全文
posted @ 2021-01-01 19:37 lukelmouse 阅读(61) 评论(0) 推荐(0) 编辑