Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, w ...
分类:
其他好文 时间:
2019-03-10 13:43:21
阅读次数:
150
1.命令cut 命令用于对文本进行切割 基本用法 用法:cut [选项]... [文件]... 从每个文件中输出指定部分到标准输出。 长选项必须使用的参数对于短选项时也是必需使用的。 b, bytes=列表 只选中指定的这些字节 c, characters=列表 只选中指定的这些字符 d, deli ...
分类:
系统相关 时间:
2019-03-08 23:34:01
阅读次数:
258
http://www.robvanderwoude.com/escapechars.php 原文摘录自: DOS Escape Characters ...
分类:
其他好文 时间:
2019-03-08 13:56:03
阅读次数:
248
You are given a string representing an attendance record for a student. The record only contains the following three characters: 'A' : Absent. 'L' : L ...
分类:
其他好文 时间:
2019-03-08 12:44:22
阅读次数:
177
使用vector 在解决一些问题的时候确实非常高效。 可以不像Array 那样一个一个去查。 可以大幅度缩减代码实现的时间。 Given a string, find the length of the longest substring without repeating characters. ...
分类:
编程语言 时间:
2019-03-06 09:21:25
阅读次数:
280
题目如下: Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The a ...
分类:
其他好文 时间:
2019-03-06 09:20:37
阅读次数:
161
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
On a broken keyboard, some of the keys are always stucked. So when you type some sentences, the characters corresponding to those keys will appear rep ...
分类:
其他好文 时间:
2019-02-26 16:57:24
阅读次数:
163