03 6 月 2020

家用路由必备hosts文件配置

家里的路由只要是openwrt系列的,都可以通过设置hosts来实现屏蔽广告或者苹果系统的升级等功能。十分有用,而且效率高没有任何资源消耗。 修改方式 vi /etc/hosts 因此写一份配置进行记录,也会保持更...
02 6 月 2020

openwr热插拔脚本-wan变化触发

最近遇到了一些小问题,我的tp703n(已经刷了openwrt)在单位usb连接手机自动共享网络到wifi。这种功能确实很好用,既能给手机充电也能直接共享网络(非手机热点,热点多设备非常不稳定)。 但是在用某酸酸插...
31 5 月 2020

openwrt的插件冲突-koolproxyR与ssrplus+

去广告主流插件有两个 一.koolproxy 优点:1.对http与https都有效 缺点:1.占用资源很多,规则复杂 2.设备需要安装证书,操作复制。 二.adbyby plus+广告屏蔽大师 优点:1.轻量级,占用资源少...
22 5 月 2020

leetcode第四题

原题https://leetcode.com/problems/median-of-two-sorted-arrays/ 内容为两个排序好的非空列表,求这两个表之间的中位数。难点在对时间复杂度有要求。 class Solution: def findMedianSortedArra...
22 5 月 2020

leetcode第一题解法2

原题https://leetcode.com/problems/two-sum/ class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: st={} ac=[] for i,val in enumerat...
21 5 月 2020

leetcode第三题解法2

原题https://leetcode.com/problems/longest-substring-without-repeating-characters/submissions/ 最长子窜 class Solution: def lengthOfLongestSubstring(self, s: str) -> int: st = {} ...
21 5 月 2020

leetcode第三题

原题https://leetcode.com/problems/longest-substring-without-repeating-characters/submissions/ 经典题 最长子窜长度 class Solution: def lengthOfLongestSubstring(self, s: str) -> int: ...
21 5 月 2020

leetcode第一题解法1

原题https://leetcode.com/problems/two-sum/submissions/ 题目内容 寻找列表两个数之和为指定数字的位置   class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: ...