参考文献 leetcode别人解题思路:https://blog.csdn.net/love905661433/article/details/84980135 ...
分类:
其他好文 时间:
2019-08-19 19:02:45
阅读次数:
53
切从最基本的开始。模式,是正则表示式最基本的元素,它们时一组描述 字符串特征的字符。模式可以简单,由普通的字符串组成,也可以复杂,往往用特殊的字符表示一个范围内的字符、重复出现,或表示上下文。 例如: ^love 这个模式包含一个特殊的字符^,表示该模式只匹配那些以love开头的字符串。例如该模式与 ...
分类:
其他好文 时间:
2019-08-19 09:21:07
阅读次数:
68
背景描述: 最近在进行安全扫描的时候,说hadoop存在漏洞,Hadoop 未授权访问【原理扫描】,然后就参考官方文档及一些资料,在测试环境中进行了开启,中间就遇到了很多的坑,或者说自己没有想明白的问题,在此记录下吧,这个问题搞了2天。 环境描述: hadoop版本:2.6.2 操作步骤: 1.想要 ...
分类:
其他好文 时间:
2019-08-15 19:14:01
阅读次数:
93
Ekka and his friend Dokka decided to buy a cake. They both love cakes and that's why they want to share the cake after buying it. As the name suggeste ...
分类:
其他好文 时间:
2019-08-12 23:43:21
阅读次数:
96
题目 Task1:试判断能否构造并构造一个长度 $n$ 的 $1...n$ 的排列,满足其 $n$ 个前缀和在模 $n$ 的意义下互不相同 Task2:试判断能否构造并构造一个长度 $n$ 的 $1...n$ 的排列,满足其 $n$ 个前缀积在模 $n$ 的意义下互不相同。 分析 既然考虑原数列很难 ...
分类:
其他好文 时间:
2019-08-12 00:57:47
阅读次数:
102
查询操作 1.charAt() 可传一个参数,传索引,返回指定位置的字符 eg: 2.charCodeAt() 可传一个参数,传索引,返回指定位置的字符的 Unicode 编码 3.concat(string1, string2, ..., stringX) 字符串拼接, 用于将一或多个字符串拼接起 ...
分类:
其他好文 时间:
2019-08-07 12:01:24
阅读次数:
129
Description Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Example 1: Example 2: Example ...
分类:
其他好文 时间:
2019-08-05 15:55:39
阅读次数:
82
It is a little known fact that cows love apples. Farmer John has two apple trees (which are conveniently numbered 1 and 2) in his field, each full of ...
分类:
移动开发 时间:
2019-07-31 12:57:45
阅读次数:
114
首先说一下“通配符”通配符记住还是很有必要的经常用的和不经常用的都要记住了!!!下面介绍下多种通配符的含义示例如下:*:匹配零个或者多个字符?:匹配任何字符~:当前用户家目录~+:当前工作的家目录~-:前一个家目录【0-9】:匹配数字范围【a-z】:字母【A-Z】:字母【love】:匹配列表中的任意一个字符【^love】:匹配列表中的所有字符以外的字符其次说下强大的编辑器之神没错就是---vim三
分类:
其他好文 时间:
2019-07-27 14:30:15
阅读次数:
82
As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are n planes on Earth, number ...
分类:
其他好文 时间:
2019-07-21 21:22:55
阅读次数:
146