我写的是对HTML5的UL和ol的知识梳理 UL是无序列表OL是有序列表 UL的type形式有三种:disc(实体圆)circle(空心圆)square(实体方块) 具体使用方法:<ul type="disc"> <li>苹果</li> <li>香蕉</li> </ul> 苹果 香蕉 效果和以上一样 ...
分类:
其他好文 时间:
2016-04-04 18:00:49
阅读次数:
140
Fire Net Problem Description Suppose that we have a square city with straight streets. A map of a city is a square board with n rows and n columns, ea ...
分类:
Web程序 时间:
2016-03-30 22:29:40
阅读次数:
195
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area. Example For example, given the follo ...
分类:
其他好文 时间:
2016-03-30 08:16:24
阅读次数:
142
1. 题目描述由$n \times n, n \in [1, 5]$的正方形由$2 \times n \times (n+1)$根木棍组成,可能已经有些木棍被破坏,求至少还需破坏多少木根,可以使得不存在任何正方形?2. 基本思路这是一道非常有趣的题目,可以使用IDA*解也可以用DLX解。可以试试5 ...
分类:
其他好文 时间:
2016-03-26 13:59:03
阅读次数:
177
题目:Sudoku 题意:求解数独。从样例和结果来看应该是简单难度的数独 思路:DFS 设置3个数组,row[i][j] 判断第i行是否放了j数字,col[i][j] 判断第i列是否放了j数字。square[i/3][j/3][x]判断第i/3行第j/3列个宫是否放置了x数字;
分类:
其他好文 时间:
2016-03-23 07:57:06
阅读次数:
173
一、CSS列表样式列表项标志list-style-type-list-style-type属性用于控制列表中列表项标志的样式-无序列表:出现在各列表项旁边的圆点-有序列表:可能是字母、数字或另外某种计数体系中的一个符号-无序列表取值-none:无标记-disc:实心圆,为默认值-circle:空心圆-square:实心方块..
分类:
Web程序 时间:
2016-03-23 06:50:25
阅读次数:
813
Discription A square number is an integer number whose square root is also an integer. For example 1, 4, 81 are some square numbers. Given two numbers
分类:
其他好文 时间:
2016-03-20 17:55:41
阅读次数:
184
时间:2016-03-19 14:52:10 星期六 题目编号:[2016-03-19][UVA][11520][Fill the Square] 题目大意:给定nusing namespace std;#define FOR(x,y,z) for(int (x)=(y);(x) 0 && m[i ...
分类:
其他好文 时间:
2016-03-19 16:26:03
阅读次数:
200
当我为[可汗学院](https://www.khanacademy.org/)开发[Android app](https://play.google.com/store/apps/details?id=org.khanacademy.android)的时候,[OkHttp](http://square.github.io/okhttp/)是一个十分有用的第三方库。虽然它的默认设置已经提供了很大的便利,但我们还是采取了...
分类:
Web程序 时间:
2016-03-19 10:06:15
阅读次数:
214
一种类型安全的Java HTTP客户端库 Retrofit介绍
Retrofit是一个开源的、类型安全的HTTP客户端,它适用于Android和Java平台,官方主页为:http://square.github.io/retrofit/Retrofit需要Java 7以上版本或Android 2.3以上版本的支持。...
分类:
编程语言 时间:
2016-03-18 10:55:03
阅读次数:
275