Substring with Concatenation of All Words (H) 题目 You are given a string, s, and a list of words, words, that are all of the same length. Find all star ...
分类:
其他好文 时间:
2020-06-25 21:20:39
阅读次数:
56
今天尝试把git与GitHub联系起来,方便后续往GitHub上面推送项目。过程中踩了几个坑,记录一下: 一、生成 GitHub--SSH-公钥 1、在git中用命令行 ssh-keygen -t rsa -C 'your email address' 文件名称及位置选择默认,enter即可。 pa ...
分类:
其他好文 时间:
2020-06-25 19:56:48
阅读次数:
58
准备工作 1. 添加依赖 <dependencies> <!--Junit--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> <! ...
分类:
其他好文 时间:
2020-06-25 13:38:43
阅读次数:
51
安装node 官网下载 https://nodejs.org/en/ 双击安装,接下来都是默认选择即可,直至安装成功 测试是否安装成功,分别输入以下命令: node -v npm -v 如下图所示,说明安装成功了。 若提示没有找到命令,则需要解决了,这里不赘述了。 安装react 设置npm源 zh ...
分类:
系统相关 时间:
2020-06-24 12:07:17
阅读次数:
163
Spring中存在很多注解组合的情况,例如**@RestController** @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @Documented @Controller @ResponseBody public @i ...
分类:
编程语言 时间:
2020-06-24 00:48:07
阅读次数:
78
import java.util.HashMap; import java.util.Map; /** * @Class CheckPermutation * @Description * 给定两个字符串 s1 和 s2,请编写一个程序,确定其中一个字符串的字符重新排列后,能否变成另一个字符串。 * ...
分类:
其他好文 时间:
2020-06-23 15:48:26
阅读次数:
55
1.系统常用检查命令 1 磁盘 df -h 2 内存 free -m 3 负载 top 4 5 [hadoop@bigdata ~]$ free -m 6 total used free shared buff/cache available 7 Mem: 7823 222 6229 257 137 ...
分类:
系统相关 时间:
2020-06-23 15:37:42
阅读次数:
82
问题概述 公司里的Jenkins构建某个前端项目一直报错,查看日志发现是在 npm i 阶段,错误如下: npm WARN deprecated core-js@2.6.11: core-js@<3 is no longer maintained and not recommended for us ...
分类:
Web程序 时间:
2020-06-22 19:35:07
阅读次数:
186
What is the difference between Session.Abandon() and Session.Clear() Clear - Removes all keys and values from the session-state collection. Abandon - ...
分类:
其他好文 时间:
2020-06-22 12:52:09
阅读次数:
53
SplitContainerControl用于界面面板控制,使用起来也非常方便,可以设置间隔条的方向,但不能设置间隔条宽度,默认的宽度略宽了些。 只能通过重写CreateContainerInfo方法才可实现间隔条宽度。相关代码如下: SplitContainerControlEx类 [Toolbo ...
分类:
其他好文 时间:
2020-06-21 23:41:12
阅读次数:
111