Description Given a set of words without duplicates, find all word squares you can build from them. A sequence of words forms a valid word square if t ...
分类:
其他好文 时间:
2019-12-22 00:37:08
阅读次数:
86
环境:centos7 问题:docker 启动没问题,但是下载 镜像时报错 问题说明:这种错误,一般都是本地系统时间错误导致报错证书过期,所以先查看本地系统时间 最终发现问题是系统时间不同步 ps:当前时间是2019-12-18 解决方式 1.安装ntpdate(已安装可以直接跳过此) 2.同步时间 ...
分类:
其他好文 时间:
2019-12-18 16:20:12
阅读次数:
85
数独 javascript function isValidSudoku(board) { var rows = []//行 var cols = [] // 列 var cubes = []//9宫格 for (var i = 0; i ...
分类:
其他好文 时间:
2019-12-15 16:48:08
阅读次数:
111
Archive for required library: 'C:/Users/Administrator/.m2/repository/org/apache/hadoop/hadoop-hdfs/2.7.3/hadoop-hdfs-2.7.3.jar' in project 'MyMapReduc ...
分类:
其他好文 时间:
2019-12-15 12:59:51
阅读次数:
119
遇到的项目问题是在每个折叠面板里边都有不同的表单,用element上的校验时,若有没填写的表单或不符合表单格式的要求,则自动展开该折叠面板,且页面定位到没校验成功的表单 this.$refs.form.validate((valid, object) => { if (valid) { alert( ...
分类:
其他好文 时间:
2019-12-15 12:51:38
阅读次数:
119
今天在通过Jenkins接口创建项目的时候,返回报错HTTP403,刚开始还以为自己参数传输错误,检查了好几遍也没找出啥问题。后面一看控制台才发现这个错误,No valid crumb was included in request for /jenkins/createItem by admin. ...
分类:
其他好文 时间:
2019-12-14 16:00:21
阅读次数:
779
问题:sudo:sudo /etc/sudoers is world writablesudo:no valid sudoers sources found ,quittingsudo:unable to initialize policy plugin #无法使用chmod修改权限 demo:De ...
分类:
其他好文 时间:
2019-12-13 09:31:08
阅读次数:
335
原题链接在这里:https://leetcode.com/problems/valid-palindrome-iii/ 题目: Given a string s and an integer k, find out if the given string is a K-Palindrome or n ...
分类:
其他好文 时间:
2019-12-12 13:24:20
阅读次数:
107
@Valid @Valid注解用于校验,所属的包: javax.validation.Valid. 你可以定义实体,在实体的属性上添加校验规则,在API接收数据时添加@Valid注解,这时你的实体将会开启一个校验的功能。 ## 空检查 @NotEmpty:用在集合类上面;不能为null,而且长度必须 ...
分类:
编程语言 时间:
2019-12-10 13:17:40
阅读次数:
189