码迷,mamicode.com
首页 >  
搜索关键字:letter    ( 1667个结果
简单加减乘除
#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)
【题解】字母 (letter) 没有传送门。 【题目描述】 给定一个字符串 $\text{S}$,现取出 $\text{S}$ 的所有子串,并按字典序从小到大排序,然后将这些排好序的字符串首尾相接,记为字符串 $\text{T}$。共有 $\text{Q}$ 次询问,每次询问 $\text{T}$ ...
分类:其他好文   时间:2020-02-06 18:11:09    阅读次数:84
leetcode17 Letter Combinations of a Phone Number
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 文本
一、CSS文本属性 color:设置文本颜色direction:设置文本方向。letter-spacing:设置字符间距line-height:设置行高text-align:对齐元素中的文本text-decoration:向文本添加修饰text-indent:缩进元素中文本的首行text-trans... ...
分类:Web程序   时间:2020-02-05 13:37:46    阅读次数:164
[LeetCode 955] Delete Columns to Make Sorted II
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学习,第五课 - 列表、字典、元组操作
本篇主要详细讲解Python中常用的列表、字典、元组相关的操作 一、列表 列表是我们最以后最常用的数据类型之一,通过列表可以对数据实现最方便的存储、修改等操作 通过下标获取元素 #先定义一个列表 letters = ['a', 'b', 'c', 'd', 'e'] letters[1] #输出:b ...
分类:编程语言   时间:2020-01-30 23:09:15    阅读次数:71
刷题17. Letter Combinations of a Phone Number
一、题目说明 题目17. Letter Combinations of a Phone Number,题目给了下面一个图,输入一个字符串包括2 9,输出所有可能的字符组合。 如输入 所有可能的输出: 二、我的做法 这个题目,我思考了4个小时(惭愧严重超时了),做法如下: 这个是我第一次,做“完美”的 ...
分类:其他好文   时间:2020-01-30 10:01:34    阅读次数:75
1328. Break a Palindrome
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
leetcode784 字母大小写全排列
题目 :https://leetcode cn.com/problems/letter case permutation/ 给定一个字符串S,通过将字符串S中的每个字母转变大小写,我们可以获得一个新的字符串。返回所有可能得到的字符串集合。 样例输入与输出 : S = "a1b2" ["a1b2", ...
分类:其他好文   时间:2020-01-29 21:57:10    阅读次数:77
The Letter Carrier's Rounds UVA - 814
记这题主要是想记录两条经验,一个是要考虑数据的可重性,删去重复数据;二是跟上篇博客一样的错误,数组复写导致数据交叉而引起的奇妙bug。以后在类似复写情况要先考虑结尾元素,这两次都栽到这里,因为结尾元素没有更新但却用了。。。一定要记得把要用的数据但未更新的初始化,主要是考察当前所要使用数据的范围有无超 ...
分类:其他好文   时间:2020-01-27 22:15:40    阅读次数:67
1667条   上一页 1 ... 10 11 12 13 14 ... 167 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!