转圈圈
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
摘要: 比较两个长度相同的字符串是否互为排列关系 阅读全文
posted @ 2019-05-22 17:35 rosendolu 阅读(117) 评论(0) 推荐(0) 编辑
摘要: checkInclusion 给定两个字符串 s1 和 s2,写一个函数来判断 s2 是否包含 s1 的排列。 换句话说,第一个字符串的排列之一是第二个字符串的子串。 javascript @param {string} s1 @param {string} s2 @return {boolean} 阅读全文
posted @ 2019-05-22 17:30 rosendolu 阅读(260) 评论(0) 推荐(0) 编辑
摘要: longestCommonPrefix 传入字符串数组,返回字符串数组的最长公共前缀 Example: 输入: ["dog","racecar","car"] 输出: "" 解释: 输入不存在公共前缀。 阅读全文
posted @ 2019-05-22 00:03 rosendolu 阅读(95) 评论(0) 推荐(0) 编辑
摘要: lengthOflongestSubstring 试例: 输入: "abcabcbb" 输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。 javascript / @param {string} s 无重复字符的最长子串 / function lengthOfLonge 阅读全文
posted @ 2019-05-20 12:01 rosendolu 阅读(603) 评论(0) 推荐(0) 编辑
摘要: Install hexo Create site Config New post Generate Publish Run server Deploy 安装 首先必须修改 文件 deploy 参考: "官网" 阅读全文
posted @ 2019-05-19 17:26 rosendolu 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 目录 1. es5 构造函数 2. es6 class es5 es6 class 阅读全文
posted @ 2019-05-18 10:30 rosendolu 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 目录 1. String.prototype.match 2. String.prototype.search 3. String.prototype.replace 4. String.prototype.split String.prototype.match 返回匹配成员组成的数组,没有则返回 阅读全文
posted @ 2019-05-18 10:19 rosendolu 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Array.prototype.every() 对每个值做判断,全部满足返回true,否则返回false 检查每个值是否相等 Array.prototype.some() 有符合条件的就返回 true Array.prototype.map() 把二位数组转换为字符串 Array.prototype 阅读全文
posted @ 2019-05-18 10:16 rosendolu 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 目录 1. 创建背景图片,加圆角 2. 添加动画效果 创建背景图片,加圆角 添加动画 阅读全文
posted @ 2019-05-18 09:56 rosendolu 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 目录 1. border radius 2. box shadow 3. text shadow 4. gradients linear gradient radial gradient 5. transition 6. animation 7. multi columns 8. flex box 阅读全文
posted @ 2019-05-10 15:57 rosendolu 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页