Letter Combinations of a Phone Number Given a digit string, return all possible letter combinations that the number could represent. A mapping of digi ...
分类:
编程语言 时间:
2019-03-19 14:56:41
阅读次数:
148
在学习《Python编程快速上手》12.3.4:列字母和数字之间的转换按照书上的代码做练习,结果输出如下:ImportError:cannotimportname‘get_column_letter‘导入错误:不能导入‘get_column_letter‘继续度娘原来get_column_letter方法已经在openpyxl的2.4版本中重写了,从cell移到了u
分类:
编程语言 时间:
2019-03-18 18:39:07
阅读次数:
930
Python描述符的使用 前言 作为一位python的使用者,你可能使用python有一段时间了,但是对于python中的描述符却未必使用过,接下来是对描述符使用的介绍 场景介绍 为了引入描述符的使用,我们先设计一个非常简单的类: class Product(): def __init__(self ...
分类:
编程语言 时间:
2019-03-16 09:49:13
阅读次数:
157
https://www.cnblogs.com/grandyang/p/4452220.html 用迭代的方法,每次从3个字符中选择一个然后传给下一次迭代 ...
分类:
其他好文 时间:
2019-03-09 01:24:16
阅读次数:
211
盒模型 1)盒的基本类型 在CSS3中使用display属性来定义盒的类型,总体来说盒分为block类型和inline类型 比如之前我们所学div元素就属于block类型,span和a属于inline类型。 2)inline-block类型 inline-block类型是CSS2.1中追加的一个盒类 ...
分类:
Web程序 时间:
2019-03-07 15:49:48
阅读次数:
240
Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numb ...
分类:
其他好文 时间:
2019-03-05 09:36:59
阅读次数:
158
题目: 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 sa ...
分类:
其他好文 时间:
2019-02-28 21:06:46
阅读次数:
237
Given a list of sorted characters letters containing only lowercase letters, and given a target letter target, find the smallest element in the list t ...
分类:
其他好文 时间:
2019-02-28 14:50:58
阅读次数:
179
1、css中color定义文本的颜色 写法:(最常用的是16进制的) 2、行间距 line-height 3、水平对齐方式 text-align left right center 4、首行缩进 text-indent 5、字与字间距 letter-spacing div{letter-spacin ...
分类:
Web程序 时间:
2019-02-28 00:56:16
阅读次数:
189
Codeforces1111D 退背包+组合数 D. Destroy the Colony Description: There is a colony of villains with several holes aligned in a row, where each hole contains ...
分类:
其他好文 时间:
2019-02-26 22:25:49
阅读次数:
270