Description: Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in th ...
分类:
其他好文 时间:
2017-09-21 18:09:06
阅读次数:
117
1.绘图 1)颜色 plot方法的关键字参数color(或c)用来设置线的颜色。可取值为: 1、颜色名称或简写 b: blue g: green r: red c: cyan m: magenta y: yellow k: black w: white 2、#rrggbb 3、(r, g, b) 或 ...
分类:
编程语言 时间:
2017-09-20 14:35:34
阅读次数:
228
来源:https://leetcode.com/problems/sort-colors Given an array with n objects colored red, white or blue, sort them so that objects of the same color are ...
分类:
其他好文 时间:
2017-09-19 22:52:19
阅读次数:
140
1.标签上title与alt属性的区别是什么? title是设置鼠标移动到图片上时显示的内容,而alt是用于当图片没有正常显示时出现的提示文字,另外alt还用于在seo中针对图片的优化说明. 2.<p>标签内的文字是什么颜色的? <style> .classA{color:blue !importa ...
分类:
其他好文 时间:
2017-09-18 14:43:13
阅读次数:
460
先看看vim编辑器提供的色彩配置方案: 首先进入vim的color目录(/usr/share/vim72/colors,不同的系统目录不同,建议在~/建立.vim目录,然后在些目录里建立对应的文件夹和文件) $ ls /usr/share/vim/vim62/colors blue.vim dele ...
分类:
系统相关 时间:
2017-09-16 14:49:31
阅读次数:
178
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>从前有座山</title> <style> .AA{width: 200px; /*长款*/ height: 200px; background-color: blue; /*背景颜 ...
分类:
其他好文 时间:
2017-09-14 10:33:21
阅读次数:
116
#tb, tb1, tr, th, td { border: 5px solid blue; /*加边框*/ padding: 5px; /*内边距*/ } #tb1 { border-collapse: collapse; /*合并边框*/ width: 500px; height: 500px;... ...
分类:
Web程序 时间:
2017-09-13 01:46:48
阅读次数:
190
1.画一组同切圆 import turtle turtle.bgcolor('pink') turtle.shape('turtle') turtle.color('blue') turtle.circle(10) turtle.circle(20) turtle.circle(30) turtle ...
分类:
其他好文 时间:
2017-09-12 20:47:41
阅读次数:
172
<!--程序ch02_1.html--> <html> <head> <title>第一个HTML网页</title> </head> <body text="blue"> Heelo,<b>world</b>! <hr size="5px" align="left" color="red" wid ...
分类:
Web程序 时间:
2017-09-11 23:32:49
阅读次数:
384
Given an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky the". What constitutes a word?A se ...
分类:
其他好文 时间:
2017-09-11 14:16:17
阅读次数:
183