let (代码块)和 const(常量不能改变) 数组解构(..sum) symbol 新引入的一种原始数据类型,表示独一无二的值 map和set对象 增加了新的字符串方法 includes() startsWith() repeat() 增加了新的数值 数组: arrayof find(返回符合条 ...
分类:
其他好文 时间:
2019-11-01 16:36:11
阅读次数:
67
实现一个 Trie (前缀树),包含 insert, search, 和 startsWith 这三个操作。 ...
分类:
其他好文 时间:
2019-10-31 23:54:36
阅读次数:
154
# 一、数字 # int(..) # 二、字符串 # replace find join strip startswith split upper lower format # tempalte = "i am {name}, age : {age}" # # v = tempalte.format... ...
分类:
编程语言 时间:
2019-10-09 12:35:38
阅读次数:
100
1、capitalize--将字符串的首字母转换为大写 2、casefold--将字符串中所有的大写字母字母变成小写(首字母为大写) 3、lower--将字符串中所有的大写字母字母变成小写(包括首字母) 4、center--插入设置的字符以补齐它设置的长度,可用空格 5、startswith/end ...
分类:
编程语言 时间:
2019-10-04 09:20:10
阅读次数:
71
1 public static string HttpPost(string url, string param = null) 2 { 3 HttpWebRequest request; 4 5 //如果是发送HTTPS请求 6 if (url.StartsWith("https", String ...
实现一个 Trie (前缀树),包含 insert, search, 和 startsWith 这三个操作。 示例: Trie trie = new Trie(); trie.insert("apple");trie.search("apple"); // 返回 truetrie.search("a ...
分类:
其他好文 时间:
2019-09-21 23:33:49
阅读次数:
118
1.将字符串转化为字符数组 格式: char[] toCharArray(); 格式:id.startsWith("0") //id数组名 "0" 测试开头是不是0 ...
分类:
编程语言 时间:
2019-09-20 00:09:25
阅读次数:
112
**表示冥运算//表示相除取整\表示转义r""可用于避免转义用于将字符串相连字符串*数字表示复制字符串个数变量[0]表示变量里的第1个,[1]为第2个变量[-1]表示变量里的倒数第1个,[-2]为倒数第2个endswith()表示以xx结尾startswith()表示以xxx开头isdigit()如果字符串只包含数字则为True,否则为Falselen()返回字符串长度lowe
分类:
编程语言 时间:
2019-09-10 00:51:26
阅读次数:
105
题目 实现一个 Trie (前缀树),包含?insert,?search, 和?startsWith?这三个操作。 示例: Trie trie = new Trie(); trie.insert("apple"); trie.search("apple"); // 返回 true trie.sear ...
分类:
其他好文 时间:
2019-08-10 21:42:09
阅读次数:
111
Implement a trie with insert, search, and startsWith methods. Example: Note: You may assume that all inputs are consist of lowercase letters a-z. All ...
分类:
其他好文 时间:
2019-08-10 09:32:47
阅读次数:
67