运行结果: D:\Python\python.exe G:/编程/python/project/TYD/01/01/10/creditcard.pyIteration is stopped Time V1 V2 V3 ... V27 V28 Amount Class0 0.0 -1.359807 - ...
分类:
其他好文 时间:
2018-09-24 14:42:50
阅读次数:
273
On a N * N grid, we place some 1 * 1 * 1 cubes that are axis-aligned with the x, y, and z axes. Each value v = grid[i][j] represents a tower of v cube ...
分类:
编程语言 时间:
2018-09-24 13:39:58
阅读次数:
167
.wrapper { display: grid; /*grid:网格,这里指使用网格形式显示*/ grid-template-columns: repeat(3, 1fr);/*grid-template-columns:指定网格中的列数及列的宽度 repeat CSS函数表示跟踪列表的重复片段,... ...
分类:
其他好文 时间:
2018-09-24 00:33:09
阅读次数:
199
test One Two Three Four Five Six ...
分类:
其他好文 时间:
2018-09-23 18:26:29
阅读次数:
141
fr: 弹性尺寸使用fr尺寸单位,其来自 "fraction" 或 "fractional unit" 单词的前两个字母,表示整体空间的一部分。 布局文件里面设置布局的一些单位和方法;如下: 1px 一个像素点1dpi 一英寸有多少个像素点1dp 在dpi为160的屏幕上: 1dp = 1px px ...
分类:
其他好文 时间:
2018-09-23 16:29:48
阅读次数:
170
.wrapper { display: grid; grid-template-columns: repeat(3, 1fr); //grid-template指网络模板,grid-template-columns属性指定网格列的轨道列表,通过指定的每个值来创建每列的列宽。使用repeat()可以创 ...
分类:
其他好文 时间:
2018-09-23 16:28:11
阅读次数:
140
Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where "adjac ...
分类:
其他好文 时间:
2018-09-22 22:24:31
阅读次数:
172
.wrapper { display: grid;/* 设置div布局为网格布局*/ grid-template-columns: repeat(3, 1fr);/* 设置网格布局为3列 每列占1/3 */ grid-gap: 10px; /*设置网格线为10个像素*/ grid-auto-rows ...
分类:
Web程序 时间:
2018-09-22 18:27:46
阅读次数:
189
下面是在自己重新复习模拟电路和数字电路时的一些学习经验和想法、知识,分享出来一起学习! 1、 HC为COMS电平,HCT为TTL电平 2、 LS输入开路为高电平,HC输入不允许开路, HC一般都要求有上下拉电阻来确定输入端无效时的电平。LS 却没有这个要求 3、 LS输出下拉强上拉弱,HC上拉下拉相 ...
分类:
其他好文 时间:
2018-09-22 12:51:56
阅读次数:
206