# 四位验证码 """四位数验证码""" code="" for i in range(4): print(i) index = random.randrange(4) #0-3 中随机取一个数 if index != i and index + 1 != i: code +=chr(random. ...
分类:
编程语言 时间:
2021-06-20 18:07:43
阅读次数:
0
ostream & operator<<(ostream & os,const Time &t) { os<<XX<<' '<<YY; return os; } 在这里 return os是为了可以连贯的cout (cout<<1)<<Time; ...
分类:
其他好文 时间:
2021-06-20 17:48:15
阅读次数:
0
字符串哈希就是将字符串转化为一个整数 Hash方法 给定一个字符串 \(s=s_1,s_2,s_3 ... s_n\) , 对字母$x$,我们规定 \(idx(x)=x?′a′+1\)。 (当然也可以直接用 $s_i$的 ASCII值) 1.自然溢出方法 \(hash[i]=hash[i?1]?p+ ...
分类:
其他好文 时间:
2021-06-20 17:45:55
阅读次数:
0
题意: 给定一棵$n$个节点的苹果树,第$i$个点上有$a_i$个苹果。这棵树有一个特殊的性质是:从根到任何叶子的路径长度的奇偶性相同。 Sagheer 和 Soliman 将在树上轮流移动,Soliman 先手,当轮到某个玩家在自己的回合不能移动时这个玩家失败。 每次移动时,两个玩家都可以任意选择 ...
分类:
其他好文 时间:
2021-06-19 19:22:58
阅读次数:
0
1.在/etc/init.d/创建你的脚本 cd /etc/init.d/ sudo vim add_static_route_to_34_52.sh 2.在脚本中按如下模板填写 注意### BEGIN INIT INFO和### END INIT INFO之间的都要写,后面有机会研究下为什么。 后 ...
分类:
系统相关 时间:
2021-06-19 18:41:17
阅读次数:
0
from turtle import * def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for ...
分类:
其他好文 时间:
2021-06-18 20:05:27
阅读次数:
0
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:
其他好文 时间:
2021-06-18 20:00:08
阅读次数:
0
1 #函数应用:计算两个正数的最大公约数和最小公倍数 2 def function1(n1,n2): 3 if n1 > n2: 4 n1 , n2 = n2 , n1 5 for i in range(n1,0,-1): 6 if n1 % i == 0 and n2 % i == 0: 7 re ...
分类:
编程语言 时间:
2021-06-18 19:22:14
阅读次数:
0
Transforms从torch1.7开始新增了该特性,之前transform进行数据增强的方式是如下的,i.e. 使用compose的方式: default_configure = T.Compose([ T.RandomCrop(32, 4), T.RandomHorizontalFlip(), ...
分类:
其他好文 时间:
2021-06-18 19:08:22
阅读次数:
0
各位看官可以关注博主个人博客,了解更多信息。 作者:Surpasser 链接地址:https://www.surpass.org.cn 平时项目中只要涉及表,那么一定能接触到众多各式各样的ID编号,博主整理一些常用的ID格式,整合一个ID生成工具类,供大家参考,如果有什么不足指出,烦请留言批评指正, ...
分类:
其他好文 时间:
2021-06-18 18:55:11
阅读次数:
0