最新 最热

【POJ 1416】Shredding Company

给你一个target number,和一个最多六位的数num,让你把数分段,使总和最接近但不大于target number。

2020-06-02
0

【CodeForces 312B】BUPT 2015 newbie practice #3A Archer

SmallR is an archer. SmallR is taking a match of archer with Zanoes. They try to shoot in the target in turns, and SmallR shoots first. The probability of shoot...

2020-05-31
1

IDEA 报错Disconnected from the target VM, address:

今天写了一个接口,运行Idea报错Disconnected from the target VM, address: '127.0.0.1:59995', transport: 'sock)

2020-05-21
0

多重假设检验的三种常见方法计算

一般来说,当p.value < 0.05时,我们认为犯错误的概率很低,可以否定原假设。但是假如我们做了很多次实验,比如10000次,那么犯错误的次数可能能达到500次,我们要规避这么多的假阳性结果,就需要考虑多重假设检验。...

2020-05-18
1

for/while else你理解了?

if elif else,for break continue pass,应该都见过,for else 和 while else组合的语句很少见,可用的场景也不多,但是了解他们的原理还是很有必要的,说不定哪天就可以用上了。...

2020-05-12
1

python–multiprocessing-下面的queue消息队列

work1=multiprocessing.Process(target=n1,args=a) 创建一个work1进程

2020-05-09
1

maven生成source jar包的方法

在install的时候,会在target文件夹下生成source文件:<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <......

2020-04-29
0

一个程序的 Systemd 启动

在之前的文章里,我们了解了一个webhooks的使用。那么如何使用 Systemd 启动并守护webhooks呢。

2020-04-28
1

【剑指offer:和为s的连续正数序列】巧用快慢指针

题目描述:输入一个正整数 target ,输出所有和为 target 的连续正整数序列(至少含有两个数)。序列内的数字由小到大排列,不同序列按照首个数字从小到大排列。...

2020-04-21
0

终于知道两个模板的区别了!【手绘漫画】图解LeetCode之在排序数组中查找元素的第一个和最后一个位置(LeetCode 34)

最后返回的值写 left 或者 right 都是没问题的!因为 while 的结束条件是 left 和 right 相等。

2020-04-21
0