敬爱的GitHub” —— 致GitHub的一封地下信 英文原文:"Dear GitHub…" An Open Letter to GitHub 最近,一个由开源名目(包含一些最盛行的名目)保护者组成的集团逐步强大起来。该集团联署了一封致 GitHub 的地下信,以表白他们的挫折感以及他们的埋怨——
分类:
其他好文 时间:
2016-03-05 16:06:02
阅读次数:
162
原题链接在这里:https://leetcode.com/problems/unique-word-abbreviation/ 题目: An abbreviation of a word follows the form <first letter><number><last letter>. Be
分类:
其他好文 时间:
2016-03-03 13:13:00
阅读次数:
154
遍历所有的可能。 1 class Solution { 2 private: 3 vector<string> res; 4 map<char,string> num; 5 public: 6 void initial() 7 { 8 9 num['2']="abc"; 10 num['3']="d
分类:
其他好文 时间:
2016-03-01 20:52:16
阅读次数:
184
<head><meta charset="utf-8"><title>无标题文档</title><style>#box{width:300px;border:1px solid #000; font:14px/30px "宋体"; color:red;letter-spacing:5px;}/* c
分类:
Web程序 时间:
2016-02-28 20:04:10
阅读次数:
154
A children’s puzzle that was popular 30 years ago consisted of a 5×5 frame which contained 24 small squares of equal size. A unique letter of the alph
分类:
其他好文 时间:
2016-02-25 22:36:17
阅读次数:
209
Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telepho
分类:
其他好文 时间:
2016-02-25 01:34:28
阅读次数:
123
Letter Letter name Pronunciation N Letter Frequency Letter Frequency A a /?e?/, /æ/[nb 2] 1 A 8.17% E 12.70% B bee /?bi?/ 2 B 1.49% T 9.06% C cee /?si
分类:
其他好文 时间:
2016-02-23 13:14:48
阅读次数:
291
题目链接:http://codeforces.com/problemset/problem/462/B Appleman has n cards. Each card has an uppercase letter written on it. Toastman must choose k card
分类:
移动开发 时间:
2016-02-20 14:33:42
阅读次数:
178
CSS选择器复习通用选择器:* 选择到所有的元素
选择子元素:> 选择到元素的直接后代(第一级子元素)
相邻兄弟选择器:+ 选择到紧随目标元素后的第一个元素
普通兄弟选择器:~ 选择到紧随其后的所有兄弟元素
伪元素选择器:
::first-line 匹配文本块的首行
::first-letter 选择文本块的首字母
伪类选择器:
:before...
分类:
Web程序 时间:
2016-02-19 12:42:27
阅读次数:
253
Description The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group
分类:
其他好文 时间:
2016-02-18 17:37:54
阅读次数:
164