【1】Beauty is only skin-deep. Physical beauty can only be held fleetingly. Real beauty is much deeper and far greater. It is a life force, an energy, w ...
分类:
其他好文 时间:
2018-03-01 00:44:16
阅读次数:
215
Olympiad Olympiad 输出除0以外的数字种数即可。 Vile Grasshoppers Vile Grasshoppers 猜想答案离y不会很远。暴力枚举答案, $O(\sqrt n)$验证,如果有因数落在区间$[2,p]$里就不合法。 Save Energy! Save Energy ...
分类:
其他好文 时间:
2018-02-26 13:38:11
阅读次数:
223
C:\....\Anaconda3\envs\py35\lib\site-packages\h5py\__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np. ...
分类:
其他好文 时间:
2018-02-24 20:45:50
阅读次数:
8085
题目: The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed f ...
分类:
其他好文 时间:
2018-02-02 21:54:08
阅读次数:
126
python bytes字节换算 def bytes_conversion(number): symbols = ('K','M','G','T','P','E','Z','Y') prefix = dict() for i,s in enumerate(symbols): prefix[s] = ... ...
分类:
编程语言 时间:
2018-02-02 16:09:00
阅读次数:
214
Populating the interactive namespace from numpy and matplotlib C:\Anaconda3\lib\site packages\h5py\__init__.py:34: FutureWarning: Conversion of the se ...
分类:
其他好文 时间:
2018-01-27 22:13:42
阅读次数:
1275
如果后台或者前端输出这样的提示: 原因是:用 echo 来输出数组,当然会报错,数组应该用print , print_r , 或者 var_dump来打印; 如果你在前端的嵌套PHP代码,想将一个数组赋值给一个变量,像这样的: ...
分类:
其他好文 时间:
2018-01-24 18:06:04
阅读次数:
207
1. 公司内有不少windows xp windows 7 这样的操作系统的机器在机房里面用来跑自动化脚本或者是其他用处. 经常有人反馈机器过一段时间连不上, 其实这一点是一个非常小的地方 很多机器上面都有一个 energy start 的标识 意味着机器的性能复核节能标准, 如何节能的很大一方面就 ...
这周作业设计到的算法是有向无环图的最短路径算法,只需要按照顶点的拓扑顺序去放松顶点即可。而在这个题目中拓扑顺序就是按照行的顺序或列的顺序。 用到的数据结构为一个二维数组picture同来存储每个像素的颜色,一个二维数组energy用来存储每个像素的能量。开始我是用一个Picture类的对象来存储图像 ...
分类:
编程语言 时间:
2018-01-20 16:32:29
阅读次数:
291
6. ZigZag Conversion 题目 解析 C++ // 6. ZigZag Conversion class Solution_6 { public: string convert(string s, int numRows) { if (numRows vec; //numRows行 ...
分类:
其他好文 时间:
2018-01-16 14:04:58
阅读次数:
156