Description
There is a straight highway with N storages alongside it labeled by 1,2,3,...,N. Bob asks you to paint all storages with two colors: red and blue. Each storage will be painted with exac...
分类:
其他好文 时间:
2014-10-09 17:15:48
阅读次数:
193
(function ($) { $.fn.checkForm = function (options) { var root = this; //将当前应用对象存入root var isok = false; //控制表单提交的开关 var pwd1;...
分类:
其他好文 时间:
2014-10-09 01:17:57
阅读次数:
364
颜色设置:指定RGB,參数是:红、绿、黄、透明度,范围是0-1+ (UIColor *)colorWithRed:(CGFloat)red green:(CGFloat)green blue:(CGFloat)blue alpha:(CGFloat)alpha;指定HSB,參数是:色调(hue),饱...
分类:
移动开发 时间:
2014-10-07 18:15:53
阅读次数:
224
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, .....
分类:
其他好文 时间:
2014-10-06 15:15:50
阅读次数:
146
View
创建 colors.xml 文件定义两个颜色
1.
2. name="blue_pressed">@android:color/holo_blue_dark
3. name="blue_normal">@android:color/holo_blue_light
4.
我们这里使用android的 HOLO 色调:
1.
2. name="ho...
分类:
移动开发 时间:
2014-10-05 04:04:37
阅读次数:
265
层叠特性
p{color:green}
.red{color:red;}
.purple{color:purple;}
#line3{color:blue;}
这是第一行文本
这是第二行文本
这是第三行文本
这是第第四行文本
这是第五行文本
类别选择其的...
分类:
Web程序 时间:
2014-10-01 14:49:01
阅读次数:
235
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".补充说明:单词是指空格之间的字符序列。输入中可能有首部或尾部...
分类:
其他好文 时间:
2014-10-01 13:10:51
阅读次数:
161
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title></title>
</head>
<body>
<pre>
1、颜色是由数字来表示
2、颜色由3原色组成,红red、绿green、蓝blue、RGB
3、3原色各在[0-255]之间变化
综上:本质是组合3..
分类:
其他好文 时间:
2014-09-26 11:07:19
阅读次数:
199
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title></title>
<style>
#par{
width:600px;
height:300px;
background:green;
}
#son1{
width:300px;
height:100px;
background:blue;
}
#son2{
width:50%;
height:50%;
back..
分类:
其他好文 时间:
2014-09-26 10:49:29
阅读次数:
205
题目:Reverse Words in a StringGiven an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the"...
分类:
其他好文 时间:
2014-09-25 21:18:27
阅读次数:
184