题目如下: Return the lexicographically smallest subsequence of text that contains all the distinct characters of text exactly once. Example 1: Example 2: ...
分类:
其他好文 时间:
2019-06-15 10:09:22
阅读次数:
108
利用 word-spacing 属性对文本进行文字间距调整,发现该属性对汉字无效果,仅对英文单词有效: 利用 letter-spacing 属性,不仅汉字与汉字之间产生了效果,单个字母与字母之间也产生了效果,会发现效果如下: 简言之: 1.如果要对英文单词之间增加间距,使用 word-spacing ...
分类:
其他好文 时间:
2019-06-12 00:58:32
阅读次数:
85
在Java开发以及生产环境中,最常用的web应用服务器当属Tomcat,尽管这只猫也能够处理一些静态请求,例如图片、html、样式文件等,但是效率并不是那么尽人意。在生产环境中,我们一般使用Nginx代理服务器来处理静态文件,来提升网站性能。 基本配置 server { listen 80; ser ...
分类:
其他好文 时间:
2019-06-11 22:06:58
阅读次数:
123
1297. Palindrome Time limit: 1.0 secondMemory limit: 64 MB The “U.S. Robots” HQ has just received a rather alarming anonymous letter. It states that t ...
分类:
其他好文 时间:
2019-06-11 09:39:45
阅读次数:
173
回溯法,参考:https://leetcode.com/problems/letter-tile-possibilities/discuss/308486/Simple-python-solution-with-backtracking 另外一行样式: 参考:https://leetcode.com ...
分类:
其他好文 时间:
2019-06-09 22:30:02
阅读次数:
149
1 #define _for(i,a,b) for(int i = (a);i s; 7 int numTilePossibilities(string tiles) 8 { 9 s.clear(); 10 int rnt = 0; 11 for (int S = 1; S >i &... ...
分类:
其他好文 时间:
2019-06-09 13:09:39
阅读次数:
84
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. A quote fr ...
分类:
其他好文 时间:
2019-06-08 18:49:58
阅读次数:
80
该题涉及到mysql中一些指令,先熟悉一下 MySQL指令 参考:https://www.cnblogs.com/zhuyongzhe/p/7686105.html python中使用MySQL指令 安装了mysql,python3.0先装好pymysql,在IDLE中测试下import pymys ...
分类:
数据库 时间:
2019-06-07 22:48:57
阅读次数:
172
如果在技术领域没遇到过什么难题(相对的)的话,只能证明你还涉世不深,高手一般都是填过无数的坑、踩过无数的bug的尸体走过来的,一帆风顺走过来的抗击打能力一般也会比较弱,一旦遇到坎就会熄火。 一个人的自我教育能力、成长经历、环境影响都对当下解决问题有着潜移默化的影响。如何练就自己解决问题的能力呢? 面 ...
分类:
其他好文 时间:
2019-05-28 09:36:00
阅读次数:
129