To store English words, one method is to use linked lists and store a word letter by letter. To save some space, we may let the words share the same s ...
分类:
编程语言 时间:
2019-12-08 17:24:46
阅读次数:
90
static: 默认布局。元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 absolute: 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 ...
分类:
其他好文 时间:
2019-12-06 00:31:42
阅读次数:
129
import unittestclass xixi(unittest.TestCase): def test_1(self): a=3 b=4 #self.assertEqual(a,b) #a,b是否相等,不相等则报错 #self.assertNotEqual(a,b) #a,b不相等,则成功 d ...
分类:
其他好文 时间:
2019-12-02 21:56:13
阅读次数:
131
目标:52,48,56- 公告:50,48,49,55,196,234,52,212,194,53,200,213,200,171,195,230,184,252,208,194- 标题目标:208,194,176,230,212,246,188,211,50,184,246,183,254,206 ...
分类:
其他好文 时间:
2019-11-30 21:00:39
阅读次数:
153
Securing your Network From the Above Attacks. Now that we know how to test the security of all known wireless encryption(WEP/WPA/WPA2), it is relative ...
分类:
Web程序 时间:
2019-11-24 19:52:05
阅读次数:
142
check_code.py #!/usr/bin/env python # -*- coding:utf-8 -*- import random from PIL import Image, ImageDraw, ImageFont, ImageFilter _letter_cases = "abc ...
分类:
其他好文 时间:
2019-11-23 18:08:38
阅读次数:
62
Given a string which contains only lowercase letters, remove duplicate letters so that every letter appears once and only once. You must make sure you ...
分类:
其他好文 时间:
2019-11-22 01:02:42
阅读次数:
103
链接: https://vjudge.net/problem/LightOJ 1067 题意: Given n different objects, you want to take k of them. How many ways to can do it? For example, say th ...
分类:
其他好文 时间:
2019-11-19 01:05:38
阅读次数:
62
设置字符和单词间距介绍 属性名 | 单位 |描述 | | letter spacing | px|设置字符间距 word spacing | px |设置单词间距 letter spacing设置字符间距 属性原理是:根据要设置的文本每一个字符之间的间距。 让我们进入 属性的实践,实践内容如:将 页 ...
分类:
Web程序 时间:
2019-11-18 00:09:13
阅读次数:
119
1.button里面,用letter-spacing调整中文字间距 问题描述:设置之后现代浏览器无法使文字水平居中,会偏右,原因:最后一个字后面也有间距存在解决方式:用空格解决;或者用paddding-left:2px解决 2.兼容ie6,7,8背景透明内容不透明解决方法: rgba(a,b,c,0 ...
分类:
其他好文 时间:
2019-11-17 01:40:27
阅读次数:
202