method1: '1aaa2bb3'.match(/\d/g) //return : [1,2,3] method2: '1aaa2bb3 hello world'.match('world ') //return null,是因为后面有个空格所以返回null '1aaa2bb3 hello wo ...
分类:
其他好文 时间:
2017-11-11 13:18:11
阅读次数:
156
Given a list of strings words representing an English Dictionary, find the longest word in words that can be built one character at a time by other wo ...
分类:
其他好文 时间:
2017-11-11 11:28:04
阅读次数:
107
Exception in thread "main" java.lang.IllegalStateException: Failed to read Class-Path attribute from manifest of jar file:/C:/Users/wo/.m2/repository/ ...
分类:
编程语言 时间:
2017-11-08 11:56:38
阅读次数:
217
1. Two Sum Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input wo ...
分类:
其他好文 时间:
2017-11-06 21:14:38
阅读次数:
163
Given a list of strings words representing an English Dictionary, find the longest word in words that can be built one character at a time by other wo ...
分类:
其他好文 时间:
2017-11-06 19:13:26
阅读次数:
142
>>> for i in range(0,10): if i > 10: break; else: print "hello world"; 输出:hello world >>> for i in range(0,10): if i > 5: break; else: print "hello wo ...
分类:
编程语言 时间:
2017-11-02 22:07:09
阅读次数:
299
1.解析赋值: 1.解析赋值: let [a,b,c,d,e] = '我是中国人' //我 a = wo let [a,b,c] = 123 // 出错,Numberbu不允许解析不允许解析 2.数据集合Set, map: let map = new Map() console.log(map) c ...
分类:
其他好文 时间:
2017-10-29 19:35:35
阅读次数:
176
由于各博客后台编辑器在使用中涉及图片上传操作比较烦锁,最近改用word编辑之后直接往平台上传,虽然排版效果说不上好看,最至少还是能解决下上传的问题;至于页面效果想处理的更漂亮,同学们都建议使用带markdown语言的编辑器。下面就来说说word2013上传博文的方法:1首先给wo..
分类:
Web程序 时间:
2017-10-22 11:14:21
阅读次数:
242
原题地址: https://leetcode.com/problems/word-break/description/ 题目: Given a non-empty string s and a dictionary wordDict containing a list of non-empty wo ...
分类:
其他好文 时间:
2017-10-16 22:01:27
阅读次数:
119
嘿,先来介绍我的主页吧! 我的主页会发布一些我在学习编程过程中的笔记。主要包括 NOIp 系列考试往年真题,和我正在利用来自学的网站:计蒜客上的一些题目。 希望我的一些错误能给你提醒,也希望我的思路能给你启发,做出比我更好的解答! 一部分笔记稍后会再完善补充!原网站在Wordpress,因为最近Wo ...
分类:
其他好文 时间:
2017-10-15 21:23:18
阅读次数:
169