以下代码直接复制到vue文件中即可用 一、template代码 <template> <div class="orderIndex"> <div class="orderTop"> <div class="orderSearch"> <div class="searchBox"> <form> <i ...
分类:
其他好文 时间:
2020-05-15 09:44:05
阅读次数:
101
【程序1】 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? num_list=[] cou=0 for i in range(1,5): for j in range(1,5): for k in range(1,5): if i!=j and j!=k and ...
分类:
编程语言 时间:
2020-05-15 00:42:09
阅读次数:
78
In this lesson, we create a set of tabs with Alpine JS, where only the content of the currently active tab is visible. To do this, we define an active ...
分类:
Web程序 时间:
2020-05-14 19:45:34
阅读次数:
73
JS的原始数据类型有: 1.number; 2.String; 3.boolean; 4.null; 5.undefined; JavaScript 对象 Array Date Math Function arguments Events Browser 对象 Window Navigator Sc ...
分类:
Web程序 时间:
2020-05-14 15:07:46
阅读次数:
75
【lowbit】 1 #define lowbit(x) x&(-x) 【单点修改】 1 void add(int pos, int k) 2 { 3 while (pos <= n) 4 { 5 tree[pos] += k; 6 pos += lowbit(pos); 7 } 8 } 【区间询问 ...
分类:
编程语言 时间:
2020-05-14 01:51:06
阅读次数:
93
【luogu P3901】数列找不同 【题意】给一整数序列,Q个询问,询问区间内数字是否互不相同 1 #include<cstdio> 2 #include<cmath> 3 #include<algorithm> 4 #define ll long long 5 using namespace s ...
分类:
编程语言 时间:
2020-05-14 01:29:17
阅读次数:
70
阿里出品:官网 https://alibaba.github.io/arthas/ 入门: 1、下载 2、启动 java -jar arthas-boot.jar 3、输入待分析的java进程序号,启动挂在分析 4、关闭 Arthas 服务端:stop 典型使用 dashboard:当前进程的信息 ...
分类:
其他好文 时间:
2020-05-14 01:24:34
阅读次数:
141
Linux系统与服务构建运维 1+x初级,项目三 FTP服务的使用 配置YUM源 将CD设备进行连接 将CD设备挂载 # mkdir /opt/centos # mount /dev/cdrom /opt/centosmount: /dev/sr0 写保护,将以只读方式挂载 配置本地YUM源文件 将 ...
分类:
系统相关 时间:
2020-05-12 20:03:39
阅读次数:
116
太难了,参考题解:https://www.luogu.com.cn/blog/An Fly/soluti p5774 ...
分类:
Web程序 时间:
2020-05-12 14:10:48
阅读次数:
78
Description 如果一个序列的任意连续子序列都至少有一个元素唯一,则称这个序列“不无聊”,否则称这个序列“无聊”。给定 $T$ 个序列 $a$,长度为 $n$,求是否“无聊”。 Hint $1\le n\le 2\times 10^5$ $1\le \text{元素大小}\le 10^9$ ...
分类:
其他好文 时间:
2020-05-12 11:38:32
阅读次数:
52