Python跑路到突然想学习了 第4章 操作列表 4.1 遍历列表 利用for循环 进行遍历 eg:magicians = [‘alice’,’dacid’,carolina’] for magician in magicians: print(magician) # 把列表内容传输给新变量。 # ...
分类:
编程语言 时间:
2018-09-22 21:19:19
阅读次数:
138
前言 由于JUnit的Assert是公认的烂API,所以不推荐使用,目前推荐使用的是AssertJ。 AssertJ网站: http://joel-costigliola.github.io/assertj/ github上examples 地址 https://github.com/joel-co ...
分类:
其他好文 时间:
2018-09-21 16:54:56
阅读次数:
386
https://mp.weixin.qq.com/s/6xcYYdYZTBPTf25xFluzBQ 使用FullAdder级联实现加法器 参考链接: https://github.com/wjcdx/jchdl/blob/master/src/org/jchdl/model/gsl/operator ...
分类:
其他好文 时间:
2018-09-21 13:32:13
阅读次数:
245
#include<stdio.h>#include<stdlib.h>#include<math.h>int main(){ int magic; //计算机随机生成的数 int guess; //人猜的数 int counter;//记录猜的次数 magic = rand() % 100 + 1; ...
分类:
其他好文 时间:
2018-09-20 22:53:36
阅读次数:
165
感觉不会期望。 首先把所有格子按照权值从小到大排一下序,这样一共有$n * m$个元素,每个元素有三个属性$x, y, val$。 下文中的下标均为排序后的下标。 这样子我们就可以推出公式: $f_i = \frac{1}{k}\sum_{j = 1}^{k}(f_j + (x_j - x_i)^2 ...
分类:
其他好文 时间:
2018-09-20 13:47:10
阅读次数:
216
E. Vasya and Magic Matrix http://codeforces.com/contest/1042/problem/E 题意: 一个n*m的矩阵,每个位置有一个元素,给定一个起点,每次随机往一个小于这个点位置走,走过去的值为欧几里得距离的平方,求期望的值。 分析: 逆推期望。 ...
分类:
其他好文 时间:
2018-09-17 21:28:15
阅读次数:
237
https://nanti.jisuanke.com/t/31710 题意 若输入的是Jessie或jessie,输出Good guy!,否则输出Dare you say that again? 分析 水题,学习一下string直接转小写的操作,方便。 ...
分类:
其他好文 时间:
2018-09-17 15:20:58
阅读次数:
207
package com.study.test; import java.io.Serializable; import java.text.SimpleDateFormat; import java.util.*; /** * 实现Java中日期的简单格式化,支持以下字段: * yyyy:年 * M... ...
分类:
编程语言 时间:
2018-09-16 21:03:24
阅读次数:
188
我们现在就告诉你九个使用Python的顶级公司。通过这种方式,您可以看到Python在商业和软件开发中的实际应用。 Industrial Light and Magic Industrial Light and Magic(ILM)是乔治卢卡斯于1975年创建的特效公司,为星球大战创造了FX(电影特 ...
分类:
编程语言 时间:
2018-09-16 21:02:39
阅读次数:
225
A-Magic Mirror Jessie has a magic mirror. Every morning she will ask the mirror: 'Mirror mirror tell me, who is the most beautiful girl in the world?' ...
分类:
其他好文 时间:
2018-09-16 12:33:36
阅读次数:
251