Difficulty: Medium Related Topics: Depth-first Search, Breadth-first Search, Union Find Link: https://leetcode.com/problems/number-of-islands/ Descrip ...
分类:
其他好文 时间:
2020-11-23 12:25:21
阅读次数:
3
Difficulty: Medium Related Topics: String, Backtracking Link: https://leetcode.com/problems/letter-combinations-of-a-phone-number/ Description Given a ...
分类:
移动开发 时间:
2020-11-21 12:45:15
阅读次数:
31
element官网 https://element.eleme.cn/#/zh-CN json在线格式化 https://www.sojson.com/ vant官网 https://vant-contrib.gitee.io/vant/#/zh-CN/ 渐变色 https://webgradien ...
分类:
Web程序 时间:
2020-11-21 11:58:31
阅读次数:
16
#概述 es/kibana 7.4.2 enable security docker 19.x.y requirment #resource limits /etc/security/limits.d/20-nproc.conf #* soft nproc 4096 root soft nproc ...
分类:
其他好文 时间:
2020-11-21 11:57:04
阅读次数:
6
Link: https://www.luogu.com.cn/problem/P1903 Solution 这个 sort 我暂且蒙在鼓里 先贴个代码。 本来我 T 了三个点的 cmp 函数如下 bool cmp(const s_q &a, const s_q &b) { if (belong[a. ...
分类:
其他好文 时间:
2020-11-21 11:54:33
阅读次数:
4
输入命令解决: export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin ...
分类:
其他好文 时间:
2020-11-20 12:20:04
阅读次数:
20
登录页面开发 调整项目目录结构如下 其中 src\router\router.js export default [ { // 命名路由,在router-link中,to属性 :to="{name: 'login'}" path: '/', name: 'login', // 路由名称 // rou ...
分类:
其他好文 时间:
2020-11-20 12:11:52
阅读次数:
8
写在前面 ## 文章Dockerfile中涉及apt-get 等操作需更换镜像 在Dockerfile中添加下列 Dockerfile源码,见下面作者githubhttps://github.com/turnbullpress/dockerbook-code/blob/master/code/6 R ...
分类:
编程语言 时间:
2020-11-20 11:39:35
阅读次数:
5
要找到目标元素,通过浏览器检查的方式或者按F12键,找到该控件元素,通过其ID、class等属性,能够唯一定位到该元素。 Selenium提供了8种定位方式。 id name class name tag name link text partial link text xpath css sele ...
分类:
其他好文 时间:
2020-11-19 12:57:08
阅读次数:
21
\(Link\) Description 给一个长度为$n$的数列和$m$,在数列任选若干个数,使得他们的和对$m$取模后最大。 \(n ≤ 35, 1 ≤ m ≤ 10^9\) Solution $n$这么小,一看就知道要爆搜。但纯搜索是$O(2^n)$的,跑不过去。这时可以考虑$Meet\ in ...
分类:
其他好文 时间:
2020-11-19 12:16:10
阅读次数:
5