#include <stdio.h> #include <string.h> char get_choice(void); char get_first(void); float get_float(void); void add(void); void subtract(void); void m ...
分类:
其他好文 时间:
2020-02-08 16:05:14
阅读次数:
69
【题解】字母 (letter) 没有传送门。 【题目描述】 给定一个字符串 $\text{S}$,现取出 $\text{S}$ 的所有子串,并按字典序从小到大排序,然后将这些排好序的字符串首尾相接,记为字符串 $\text{T}$。共有 $\text{Q}$ 次询问,每次询问 $\text{T}$ ...
分类:
其他好文 时间:
2020-02-06 18:11:09
阅读次数:
84
1 """ 2 Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. 3 A mapping of d ...
分类:
其他好文 时间:
2020-02-06 16:44:30
阅读次数:
70
一、CSS文本属性 color:设置文本颜色direction:设置文本方向。letter-spacing:设置字符间距line-height:设置行高text-align:对齐元素中的文本text-decoration:向文本添加修饰text-indent:缩进元素中文本的首行text-trans... ...
分类:
Web程序 时间:
2020-02-05 13:37:46
阅读次数:
164
We are given an array A of N lowercase letter strings, all of the same length. Now, we may choose any set of deletion indices, and for each string, we ...
分类:
其他好文 时间:
2020-02-04 10:24:21
阅读次数:
67
本篇主要详细讲解Python中常用的列表、字典、元组相关的操作 一、列表 列表是我们最以后最常用的数据类型之一,通过列表可以对数据实现最方便的存储、修改等操作 通过下标获取元素 #先定义一个列表 letters = ['a', 'b', 'c', 'd', 'e'] letters[1] #输出:b ...
分类:
编程语言 时间:
2020-01-30 23:09:15
阅读次数:
71
一、题目说明 题目17. Letter Combinations of a Phone Number,题目给了下面一个图,输入一个字符串包括2 9,输出所有可能的字符组合。 如输入 所有可能的输出: 二、我的做法 这个题目,我思考了4个小时(惭愧严重超时了),做法如下: 这个是我第一次,做“完美”的 ...
分类:
其他好文 时间:
2020-01-30 10:01:34
阅读次数:
75
Given a palindromic string palindrome, replace exactly one character by any lowercase English letter so that the string becomes the lexicographically ...
分类:
其他好文 时间:
2020-01-30 09:47:14
阅读次数:
94
题目 :https://leetcode cn.com/problems/letter case permutation/ 给定一个字符串S,通过将字符串S中的每个字母转变大小写,我们可以获得一个新的字符串。返回所有可能得到的字符串集合。 样例输入与输出 : S = "a1b2" ["a1b2", ...
分类:
其他好文 时间:
2020-01-29 21:57:10
阅读次数:
77
记这题主要是想记录两条经验,一个是要考虑数据的可重性,删去重复数据;二是跟上篇博客一样的错误,数组复写导致数据交叉而引起的奇妙bug。以后在类似复写情况要先考虑结尾元素,这两次都栽到这里,因为结尾元素没有更新但却用了。。。一定要记得把要用的数据但未更新的初始化,主要是考察当前所要使用数据的范围有无超 ...
分类:
其他好文 时间:
2020-01-27 22:15:40
阅读次数:
67