[LeetCode]20 Valid Parentheses 有效的括号 Description Given a string containing just the characters , , , , and , determine if the input string is valid. A ...
分类:
其他好文 时间:
2019-03-30 01:28:18
阅读次数:
168
通过这里的回答,我们可以知道: Tomcat在 7.0.73, 8.0.39, 8.5.7 版本后,添加了对于http头的验证。 具体来说,就是添加了些规则去限制HTTP头的规范性 参考这里 具体来说: 转换过来就是以下字符(对应10进制ASCII看): 键盘上那些控制键:(<32或者=127) 非 ...
分类:
其他好文 时间:
2019-03-27 14:12:22
阅读次数:
3007
不是很难的模拟题,想好前后状态的变化就会发现,其实“)”括号才可以抵消之前的“(”括号,反之不行。class Solution(object): def minAddToMakeValid(self, S): """ :type S: str :rtype: int """ l, r = 0, 0 ... ...
分类:
其他好文 时间:
2019-03-27 09:20:33
阅读次数:
136
Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Example 2: Note:You may assume the string contains only ...
分类:
其他好文 时间:
2019-03-21 21:41:27
阅读次数:
165
安装方法参考:https://www.cnblogs.com/ruigege/p/8064847.html 出现问题:[ERROR] COLLATION 'utf8_general_ci' is not valid for CHARACTER SET 'latin1' 之前忘记执行:/usr/loc ...
分类:
数据库 时间:
2019-03-19 15:12:37
阅读次数:
208
如果你执行spark的job时出现上面这个错误,同时满足以下条件 1、存在抽象父类 2、抽象父类中存在有参数的构造方法 3、子类实现了序列化接口,父类没有实现 那么恭喜你,来对地方了,解决方法非常简单,实现抽象父类的默认无参数构造方法就可以 下面代码的第9行 为什么会出现上面这个问题,我在这里强行解 ...
分类:
其他好文 时间:
2019-03-19 12:13:42
阅读次数:
156
Given a linked list, remove the n-th node from the end of list and return its head. Example: Note: Given n will always be valid. 方法一:双指针 删除倒数第n个点,我们首先 ...
分类:
其他好文 时间:
2019-03-18 23:41:20
阅读次数:
210
本地(windows)代码想推送到linux自己搭建的git服务端,第一步是建立本地与服务端的关联,第二步是本地推送到服务端。 第一步需要看你本地工程是否从git上clone来的,如果是clone来的那就不存在第一步了。但如果是本地已经有了工程之后才想同步到git上,需要先到linux的git上新增 ...
分类:
移动开发 时间:
2019-03-18 13:50:30
阅读次数:
861
参考:https://leetcode.com/problems/check-if-word-is-valid-after-substitutions/discuss/247626/JavaPythonC%2B%2B-Stack-Solution-O(N 方法1:使用c++自带的find函数和era ...
分类:
其他好文 时间:
2019-03-16 14:16:40
阅读次数:
198
操作Cookie // Go to the correct domain driver.get("http://www.example.com"); // Now set the cookie. This one's valid for the entire domain Cookie cookie... ...
分类:
其他好文 时间:
2019-03-15 01:13:38
阅读次数:
182