ITI 1120 - Assignment 1Submit a zip file with a1q1.py, a1q2.py, a1q3.py, a1q4.py.1. (2 points) Two numbers a and b are called pythagorean pair if both ...
分类:
其他好文 时间:
2019-09-28 20:15:31
阅读次数:
95
Kibana安装及使用说明 Kibana是一个针对Elasticsearch的开源分析及可视化平台,用来搜索、查看交互存储在Elasticsearch索引中的数据。 ...
分类:
其他好文 时间:
2019-09-28 18:23:33
阅读次数:
63
在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接.第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认; SYN:同步序列编号(Synchronize Sequence Numbers)第二次握手:服务器收到syn包 ...
分类:
其他好文 时间:
2019-09-26 23:57:04
阅读次数:
144
$dp[x][p][pp]$表示第x位,当前已有数字mod 2520(1~9数字的lcm)为p,当前各位数字的lcm为pp 观察到数组太大,考虑压缩,第三维lcm最多只有9个数字,打表发现最多只有48个状态,压掉第三维即可 打表用一个状压然后set维护(广搜也可以)即可 有一个坑点:题目里似乎没有说 ...
分类:
其他好文 时间:
2019-09-26 23:38:30
阅读次数:
96
Easy The Fibonacci numbers, commonly denoted F(n) form a sequence, called the Fibonacci sequence, such that each number is the sum of the two precedin ...
分类:
其他好文 时间:
2019-09-24 11:55:27
阅读次数:
57
1、gulp安装 需要全局安装:npm install gulp -g 还需要本地安装,在项目目录中:npm install gulp --save 2、gulp使用 在项目目录中新建1个gulpfile.js文件. 在这个文件中写上构建代码. 在项目目录中新建1个gulpfile.js文件. 在这 ...
分类:
其他好文 时间:
2019-09-23 15:09:49
阅读次数:
117
1060 Are They Equal (25 分) 1060 Are They Equal (25 分) 1060 Are They Equal (25 分) If a machine can save only 3 significant digits, the float numbers 12 ...
分类:
其他好文 时间:
2019-09-23 14:56:25
阅读次数:
87
leet code 1201. Ugly Number III. Write a program to find the n-th ugly number. Ugly numbers are positive integers which are divisible by a or b or c. ...
分类:
其他好文 时间:
2019-09-23 00:09:08
阅读次数:
179
Using each of the digits 1, 2, 3,...,D1 exactly once to form D1 digit numbers, how many are divisible by D2. 输入 The input data will contain multiple c ...
分类:
其他好文 时间:
2019-09-22 15:24:53
阅读次数:
98