if(n0.val>16) { n0.val=n0.val-1 } ...
分类:
其他 时间:
2019-10-05 09:03:50
收藏:
0 评论:
0 赞:
0 阅读:
102
安装 gitlab,建议系统内存 6G ,不然会报错。 一、如何安装 gitlab 下载 gitlab 的 RPM 包 例:gitlab-ce-12.0.8-ce.0.el7.x86_64.rpm 安装依赖库 启动postfix 为了演示关闭防火墙 安装 gitlab 查看 gitlab 安装完后的 ...
分类:
其他 时间:
2019-10-05 09:03:27
收藏:
0 评论:
0 赞:
0 阅读:
96
[TOC] 10.4 BZOJ4247 挂饰 cpp const int maxN = 2e3 + 7; struct Node{ int a , b; }a[maxN]; int f[maxN][maxN]; bool cmp(Node a, Node b) { return a.a b.a; } ...
分类:
其他 时间:
2019-10-05 09:03:06
收藏:
0 评论:
0 赞:
0 阅读:
82
e.g. for the login case, originally it's hard coded in the script. now using parameters in TestNG.xml //private static String username = "user01; //pr ...
分类:
其他 时间:
2019-10-05 09:02:04
收藏:
0 评论:
0 赞:
0 阅读:
74
离线安装rpm包自动解决依赖参照https://blog.csdn.net/u011396718/article/details/80153515当生产环境由于安全原因处于断网状态的时候。通过本地源的方式,使用yum能够自动安装软件,并且自动处理好依赖关系。然而该方法最最关键的一个问题是——怎么获取 ...
分类:
其他 时间:
2019-10-05 09:01:45
收藏:
0 评论:
0 赞:
0 阅读:
105
#include #include using namespace std; int w[5] = { 0, 2, 3, 4, 5 }; //商品的体积2、3、4、5 int v[5] = { 0, 3, 4, 5, 6 }; //商品的价值3、4、5、6 int bagV = 8; //背包大..... ...
分类:
其他 时间:
2019-10-05 00:51:29
收藏:
0 评论:
0 赞:
0 阅读:
69
Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at most twice and return the new length. Do not allocate extra ...
分类:
编程语言 时间:
2019-10-05 00:51:06
收藏:
0 评论:
0 赞:
0 阅读:
98
一、安装准备(完整版带图片的 找 3208006642@qq.com) 1.IP配置 打开终端输入ifconfig查看网卡配置名字为 ens33 所以为 本机为ifcfg-ens33(各个版本系统的名字不一样) 在ROOT下通过vim /etc/sysconfig/network-scripts/i ...
分类:
其他 时间:
2019-10-05 00:50:46
收藏:
0 评论:
0 赞:
0 阅读:
94
滑动窗口思想: 如对于abcabcab,无重复字符的最长字串为abc,长度为3。使用滑动窗口思想,当窗口为abc时,再进入a,队列变为abca,不满足要求,需要移动窗口。移动的方法为抛弃最左边的字符,即a,持续该操作,直到序列末尾。 注:unordered_set用来判断只去重不重复的需求(set是 ...
分类:
其他 时间:
2019-10-05 00:49:54
收藏:
0 评论:
0 赞:
0 阅读:
79
设置坐标轴: 修改坐标轴上的小标,以及显示坐标轴上的小标: 1 import numpy as np 2 import pandas as pd 3 import matplotlib.pyplot as plt 4 5 if 1: 6 plt.figure(figsize=(14,12)) 7 x ...
分类:
其他 时间:
2019-10-05 00:49:33
收藏:
0 评论:
0 赞:
0 阅读:
84
一、实现渐变功能 从红色背景变到绿色背景并提示 ...
分类:
编程语言 时间:
2019-10-05 00:49:13
收藏:
0 评论:
0 赞:
0 阅读:
105
首先放出matplotlib的中英文文档: 中文:https://www.matplotlib.org.cn/home.html 英文:https://matplotlib.org/3.1.1/index.html Matplotlib是一个Python 2D绘图库,可以生成各种硬拷贝格式和跨平台交 ...
分类:
其他 时间:
2019-10-05 00:48:37
收藏:
0 评论:
0 赞:
0 阅读:
136
```python
BASE_LOG_DIR = os.path.join(BASE_DIR, "log")
LOGGING = { 'version': 1, 'disable_existing_loggers': False, 'formatters': { 'standard': { 'for... ...
分类:
其他 时间:
2019-10-05 00:48:16
收藏:
0 评论:
0 赞:
0 阅读:
76
安装tigervnc 查看是否安装VNC rpm q tigervnc server yum安装 yum install tigervnc tigervnc server y 设置密码(提示选择no) vncpasswd 启动vncserver打开一个端口 vncserver :1 查看VNC运行端 ...
分类:
其他 时间:
2019-10-05 00:47:34
收藏:
0 评论:
0 赞:
0 阅读:
101
禁用el-radio,用disabled即可, 如果是循环的选项,那么需要绑定disabled属性 例子: <template> <div> <el-radio-group v-model="radio" @change="getValue()"> <!-- 禁用el-radio,用disabled ...
分类:
其他 时间:
2019-10-05 00:47:15
收藏:
0 评论:
0 赞:
0 阅读:
757
bond模式: Mode=0(balance rr)表示负载分担round robin Mode=1(active backup)表示主备模式,只有一块网卡是active,另外一块是备的standby Mode=2(balance xor)表示XOR Hash负载分担 Mode=3(broadcas ...
分类:
其他 时间:
2019-10-05 00:46:12
收藏:
0 评论:
0 赞:
0 阅读:
107
参考了这篇文章:https://blog.csdn.net/lanyzh0909/article/details/50404664 大体的代码如下: 在高通骁龙835处理器上,始终打印如下内容: warning: could not set CPU 7 affinity, continuing... ...
分类:
移动平台 时间:
2019-10-05 00:45:54
收藏:
0 评论:
0 赞:
0 阅读:
96
引言: ECMAScript 和 JavaScript 的关系是,前者是后者的规格,后者是前者的一种实现(另外的 ECMAScript 方言还有 JScript 和 ActionScript)。日常场合,这两个词是可以互换的。 ES6 既是一个历史名词,也是一个泛指,含义是 5.1 版以后的 Jav ...
分类:
其他 时间:
2019-10-05 00:45:30
收藏:
0 评论:
0 赞:
0 阅读:
104
Alpar 前辈选的三道题。限时3.5h,难度 DAY1 中难道。 T1:P1098 字符串的展开 之前写过这道题(其实忘了 题解:Luogu P1098 字符串的展开 难度不大就是挺繁琐的一道题。按题目说的搞一堆for循环就行。赛后看自己以前的代码,发现用了三目运算符压行,效率也比现在优秀…… T ...
分类:
其他 时间:
2019-10-05 00:45:12
收藏:
0 评论:
0 赞:
0 阅读:
132
// 参考博客 https://www.cnblogs.com/TheRoadToTheGold/p/6254255.html#4175712 ...
分类:
其他 时间:
2019-10-05 00:44:42
收藏:
0 评论:
0 赞:
0 阅读:
80