原题链接在这里:https://leetcode.com/problems/defanging-an-ip-address/ 题目: Given a valid (IPv4) IP address, return a defanged version of that IP address. A de ...
分类:
其他好文 时间:
2019-12-22 11:02:53
阅读次数:
71
原题链接在这里:https://leetcode.com/problems/remove-outermost-parentheses/ 题目: A valid parentheses string is either empty (""), "(" + A + ")", or A + B, wher ...
分类:
其他好文 时间:
2019-12-22 10:58:31
阅读次数:
90
Design an Iterator class, which has: A constructor that takes a string characters of sorted distinct lowercase English letters and a number combinatio ...
分类:
其他好文 时间:
2019-12-22 10:23:29
阅读次数:
99
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
题目如下: Design an Iterator class, which has: A constructor that takes a string characters of sorted distinct lowercase English letters and a number comb ...
分类:
其他好文 时间:
2019-12-15 10:24:14
阅读次数:
70