553. 炸弹袭击 中文English 给定一个二维矩阵, 每一个格子可能是一堵墙 W,或者 一个敌人 E 或者空 0 (数字 '0'), 返回你可以用一个炸弹杀死的最大敌人数. 炸弹会杀死所有在同一行和同一列没有墙阻隔的敌人。 由于墙比较坚固,所以墙不会被摧毁. 样例 样例1 输入: grid = ...
分类:
其他好文 时间:
2020-05-29 10:27:48
阅读次数:
83
题目 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 sam ...
分类:
其他好文 时间:
2020-05-28 19:53:14
阅读次数:
55
1039 Course List for Student (25分) Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the cours ...
分类:
其他好文 时间:
2020-05-25 00:25:57
阅读次数:
66
114. 不同的路径 中文English 有一个机器人的位于一个 m × n 个网格左上角。 机器人每一时刻只能向下或者向右移动一步。机器人试图达到网格的右下角。 问有多少条不同的路径? 样例 Example 1: Input: n = 1, m = 3 Output: 1 Explanation: ...
分类:
其他好文 时间:
2020-05-24 00:34:31
阅读次数:
60
分析是将文本,如任何电子邮件的正文转换成附加到反向索引的tokens(标记)或terms(条件)的过程。分析由分析器执行,它可以是内置的分析器,也可以是每个索引定义的自定义分析器。 索引时分析 在索引时,内置的english analyzer(英文分析器)将会转换这个句子: "The QUICK b ...
分类:
其他好文 时间:
2020-05-24 00:25:40
阅读次数:
87
1131. 排列中的函数 中文English 从1~nn 的全排列共有 n!n! 种。例如 n = 3n=3,共有 3!=63!=6 种排列如下: 1,2,3 1,3,2 2,1,3 2,3,1 3,1,2 3,2,1 对于 nn 的任意一种排列 AA,A_xA?x?? 表示在第 xx 个位置上的数 ...
分类:
其他好文 时间:
2020-05-23 13:11:27
阅读次数:
98
61. 搜索区间 中文English 给定一个包含 n 个整数的排序数组,找出给定目标值 target 的起始和结束位置。 如果目标值不在数组中,则返回[-1, -1] 样例 例1: 输入: [] 9 输出: [-1,-1] 例2: 输入: [5, 7, 7, 8, 8, 10] 8 输出: [3, ...
分类:
其他好文 时间:
2020-05-23 09:43:19
阅读次数:
51
In an alien language, surprisingly they also use English lowercase letters, but possibly in a different order. The order of the alphabet is some permu ...
分类:
其他好文 时间:
2020-05-15 13:37:25
阅读次数:
61
一、scanf("%[^\n]", str)正则用法 1 [^\n]表示一读入换行字符就结束读入。这个是scanf的正则用法。我们都知道scanf不能接收空格符,一接受到空格就结束读入,所以不能像gets()等函数一样接受一行字符串,但是使用%[^\n]就可以一直读入,直到碰到’\n’才结束读入2 ...
分类:
其他好文 时间:
2020-05-11 18:19:27
阅读次数:
190
Given a string s and a string t, check if s is subsequence of t. You may assume that there is only lower case English letters in both s and t. t is po ...
分类:
其他好文 时间:
2020-05-11 13:14:30
阅读次数:
81