总和leetcode 39
python3 install 其他包 报:ModuleNotFoundError: No module named '_ctypes' 的问题
# python3 install 其他包 报:ModuleNotFoundError: No module named '_ctypes' 的问题 > python2 > import _ctypes 没有问题 > python3 > import _ctypes 报上述错误,说明_ctypes确 ......
Nginx报错Can't open PID file /var/run/nginx.pid (yet?) after start: No such file or directory
# 1. 关于报错 启动nginx服务发现 Systemd 中存在报错: > Can't open PID file /var/run/nginx.pid (yet?) after start: No such file or directory  ## 方法:回溯 ### 解题思路 - 如何去重? - 答:对相同的元素进行统一的处理,即枚举当前操作选几个该元素。 ### 代码 ```cpp class Solutio ......
LeetCode 周赛上分之旅 # 36 KMP 字符串匹配殊途同归
> ⭐️ **本文已收录到 AndroidFamily,技术和职场问题,请关注公众号 \[彭旭锐] 和 [BaguTree Pro](https://files.mdnice.com/user/3257/de950859-eb71-4821-a36b-bebe5cff500d.png) 知识星球提问 ......
Could not find server 'server name' in sys.servers. SQL Server 2014
Could not find server 'server name' in sys.servers. SQL Server 2014 At first check out that your linked server is in the list by this query select nam ......
关于安装python包执行setup.py文件报错类似提示line 155 warnings.warn(f'Cannot copy file {src_path}.') SyntaxError: invalid
首先可以确定世python语法问题,一般来说python3.6以后字符串使用f是没有问题的,后来发现问题所在,原来我安装好python以后,没有将python命令软连接到python3,导致python命令其实一直是使用的python2,所以才会有这样的问题。所以,当python3安装好以后,一定要 ......
LeetCode 581. 最短无序连续子数组
``` class Solution { public: int findUnsortedSubarray(vector& nums) { int n=nums.size(); int l=0,r=n-1; while(l0&&nums[r]>=nums[r-1]) r--; int min_num ......
第 356 场周赛 - 力扣(LeetCode)
# [第 356 场周赛 - 力扣(LeetCode)](https://leetcode.cn/contest/weekly-contest-356/) ## [2798. 满足目标工作时长的员工数目 - 力扣(LeetCode)](https://leetcode.cn/problems/num ......
LeetCode 543. 二叉树的直径
``` /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), ......
C# 反序列化报错 XML 文档(1, 2)中有错误:不应有 <xml xmlns=''>
1.XmlSerializer症状 用XmlSerializer进行xml反序列化的时候,程序报错: 不应有 <xml xmlns=''>。说明: 执行当前 Web 请求期间,出现未经处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。 异常详细信息: S ......
[LeetCode] 712. Minimum ASCII Delete Sum for Two Strings
Given two strings s1 and s2, return the lowest ASCII sum of deleted characters to make two strings equal. Example 1: Input: s1 = "sea", s2 = "eat" Out ......
代码随想录算法训练营第三天| LeetCode 242.有效的字母异位词 349. 两个数组的交集 1. 两数之和
242.有效的字母异位词 卡哥建议: 这道题目,大家可以感受到数组用来做哈希表给我们带来的遍历之处。 题目链接/文章讲解/视频讲解: https://programmercarl.com/%E5%93%88%E5%B8%8C%E8%A1%A8%E7%90%86%E8%AE%BA%E5%9F%BA%E ......
leetcode-n-sum总结
总结一下leetcode中遇见的2-sum, 3-sum, 4-sum问题,并扩展到n-sum。 1. 两数之和 - 力扣(LeetCode) 梦开始的地方,不多说。 class Solution { public int[] twoSum(int[] nums, int target) { Map ......
《莫生气》 外文名《Don't be angry》
人生就像一场戏,因为有缘才相聚。 相扶到老不容易,是否更该去珍惜。 为了小事发脾气,回头想想又何必。 别人生气我不气,气出病来无人替。 我若气死谁如意,况且伤神又费力。 邻居亲朋不要比,儿孙琐事由他去。 吃苦享乐在一起,神仙羡慕好伴侣。 中文名《莫生气》 外文名《Don't be angry》 启 ......
LeetCode/课程表IV
你总共需要上 numCourses 门课,课程编号依次为 0 到 numCourses-1 。你会得到一个数组 prerequisite ,其中 prerequisites[i] = [ai, bi] 表示如果你想选 bi 课程,你 必须 先选 ai 课程。 有的课会有直接的先修课程,比如如果想上课 ......
python Pycharm出现“can't find '__main__' module”解决方案
是配置没配对,因为在配置时没有选择.py文件,而只选择了工程名。因此选择Edit Configurations。 选择Edit Configurations后,查看Script path只选择了工程名inner funs,而这里应该要选择工程名里面的.py文件(main函数,如果没有,选择你要执行的 ......
Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed;
报错Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConf... ......
leetcode-异位词问题总结
总结一下leetcode中遇见的异位词问题: 242. 有效的字母异位词 - 力扣(LeetCode) 本题是异位词题目中最基础的,有两种方法可以轻松解决: 1. 排序法,时间复杂度O(n log n): class Solution { //排序解决 public boolean isAnagra ......
leetcode第353场周赛 4 - 差分数组维护区间修改
[题目传送门](https://leetcode.cn/contest/weekly-contest-353/) # [2772. 使数组中的所有元素都等于零](https://leetcode.cn/problems/apply-operations-to-make-all-array-eleme ......
Python报错 | ImportError: To be able to use evaluate-metric/seqeval, you need to install the following dependencies['seqeval'] using 'pip install seqeval' for instance'
**报错信息** 使用`metric = evaluate.load("seqeval")`的时候,报如下错误: ```python ImportError: To be able to use evaluate-metric/seqeval, you need to install the fol ......
Angular:error TS2717: Subsequent property declarations must have the same type. Property 'contentRect' mu st be of type 'DOMRectReadOnly', but here has type 'DOMRectReadOnly'.
# 解决方案 在`tsconfig.json`的`compilerOptions`选项中添加如下内容`"skipLibCheck": true`。 如下图所示  在使用上述代码读取csv文件时报错“UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa1 in position 13: invalid ......
代码随想录算法训练营第四天| LeetCode 24. 两两交换链表中的节点 19.删除链表的倒数第N个节点 142.环形链表II
24. 两两交换链表中的节点 卡哥建议:用虚拟头结点,这样会方便很多。 本题链表操作就比较复杂了,建议大家先看视频,视频里我讲解了注意事项,为什么需要temp保存临时节点。 题目链接/文章讲解/视频讲解:https://programmercarl.com/0024.%E4%B8%A4%E4%B8% ......
College Students'Booklist
College Students'Booklist As is clearly reflected in the table above,the percentage of the college students'booklist,from 1992 to 2012.we can see ther ......