原题如下面,这意味着无序排列(由0,1,2组成)。一号通。组织成若干阵列0-几个1-几个2这样的序列。Given an array with n objects colored red, white or blue, sort them so that objects of the same col...
分类:
编程语言 时间:
2015-08-13 19:38:50
阅读次数:
124
Description
Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and the other one is black and each piece is lying e...
分类:
其他好文 时间:
2015-08-13 18:03:24
阅读次数:
129
poj 2488 A Knight's JourneyDescriptionBackground The knight is getting bored of seeing the same black and white squares again and again and has decide...
分类:
其他好文 时间:
2015-08-13 17:24:10
阅读次数:
89
DescriptionFlip game is played on a rectangular 4x4 field with two-sided pieces placed on each of its 16 squares. One side of each piece is white and ...
分类:
其他好文 时间:
2015-08-13 08:49:56
阅读次数:
129
大家应该都知道用text-overflow:ellipsis属性来实现单行文本的溢出显示省略号(…)。当然部分浏览器还需要加宽度width属性。overflow: hidden;text-overflow: ellipsis;white-space: nowrap;但是这个属性并不支持多行文本溢出显...
分类:
其他好文 时间:
2015-08-11 21:00:09
阅读次数:
102
首先,实现这种效果需要css两个属性,分别是text-overflow和white-space. 1.text-overflow有两个值,clip:表示剪切文本;ellipsis:表示用省略号代替修改的文字. 2.white-space这里只说明两个常用的值,normal:表示自动换行;no...
分类:
Web程序 时间:
2015-08-11 12:02:29
阅读次数:
137
参考妙趣课堂的视频,做了这个游戏,通过这个游戏可以了解到canvas的强大。废话不多说,直接上代码。
html代码:
马祖
css代码:这里我用的是less
@black:#000;
@white:#fff;
* {
margin: 0;
padding: 0;
}
body {
background-color:@black;
}
#box {...
分类:
Web程序 时间:
2015-08-10 11:58:22
阅读次数:
181
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
其他好文 时间:
2015-08-07 19:14:42
阅读次数:
171
1.将 Tab缩进(制表符缩进) 改为 4个空格打开Preferences -> Settings-User(中文版是:Preferences -> 设置-用户 ),加入以下代码{ "tab_size": 4, "translate_tabs_to_spaces": true}并保存。截...
分类:
其他好文 时间:
2015-08-07 10:59:42
阅读次数:
114
Pyhton 编辑错误
问题:
TabError: Inconsistent use of tabs and spaces in indentation
解决方法:
这个错误是说你用了tab键作缩进了,
因为在python不像C/C++里用大括号来区分程序块,而是用缩进
所以缩进很重要你把Tab都换成空格就好了...
分类:
其他好文 时间:
2015-08-05 22:25:03
阅读次数:
1015