CSS边框CSS边框(border)可以是围绕元素内容和内边距的一条或多条线,对于这些线条,您可以自定义它们的样式、宽度以及颜色。使用CSS边框属性,我们可以创建出比HTML中更加优秀的效果边框宽度:您可以通过border-width属性为边框指定宽度。为边框指定宽度有两种方法:可以指定长度值,比如2px或0.1em;或者使用3个关键字之一,它们分别是thin(细的)、medium(默认值)和th
分类:
Web程序 时间:
2018-10-09 17:07:36
阅读次数:
340
"分组聚合、过滤、转换" 简书大神SeanCheney的译作,我作了些格式调整和文章目录结构的变化,更适合自己阅读,以后翻阅是更加方便自己查找吧 设定最大列数和最大行数 1 聚合 读取flights数据集,查询头部 .dataframe tbody tr th:only of type { vert ...
分类:
其他好文 时间:
2018-10-09 00:46:17
阅读次数:
258
题目传送门 题意:给你一个序列,长度为n,m次询问,询问一段区间的第k大。 题解:CDQ分治,对整个值域进行分治。每次取一个mid, 计算出整个区间内mid <= 的数目,如果 num >= k, 那么就可以第k大的数一定落在[ l, mid]之间, 否者就会落在 [mid+1, r]之间, 然后我 ...
分类:
其他好文 时间:
2018-10-07 11:01:22
阅读次数:
152
【二进制枚举+LCS】Card Hand Sorting 题目描述 When dealt cards in the card game Plump it is a good idea to start by sorting the cards in hand by suit and rank. Th ...
分类:
其他好文 时间:
2018-10-07 00:45:52
阅读次数:
199
题目链接:http://poj.org/problem?id=2031 题意:修建太空站每个舱之间的走廊。每个舱都是球体。给出n个舱的三维空间坐标以及球体半径。如果球体之间接触或者相接,就不用修走廊。让你求最短走廊的长度。 题解:有点点坑这个题。。改了好久。。这里的存储其实是 $len(a,b) - ...
分类:
其他好文 时间:
2018-10-07 00:43:48
阅读次数:
163
The Zen of Python, by Tim Peters The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better th ...
分类:
编程语言 时间:
2018-10-06 22:09:34
阅读次数:
341
题目链接 Run Length Encoding Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 5006 Accepted: 1560 Description Your task is to write a program th ...
分类:
其他好文 时间:
2018-10-06 13:21:16
阅读次数:
146
Benches CF 1042A There are nn benches in the Berland Central park. It is known that aiai people are currently sitting on the ii-th bench. Another mm p ...
分类:
其他好文 时间:
2018-10-06 12:04:32
阅读次数:
139
目录 1. 数据探索的步骤和准备 2. 缺失值处理 为什么需要处理缺失值 Why data has missing values? 缺失值处理的技术 3. 异常值检测和处理 What is an outlier? What are the types of outliers? What are th ...
分类:
其他好文 时间:
2018-10-05 22:34:39
阅读次数:
260
"索引对齐" 简书大神SeanCheney的译作,我作了些格式调整和文章目录结构的变化,更适合自己阅读,以后翻阅是更加方便自己查找吧 1 索引方法 .dataframe tbody tr th:only of type { vertical align: middle; } .dataframe t ...
分类:
其他好文 时间:
2018-10-05 20:21:01
阅读次数:
169