码迷,mamicode.com
首页 >  
搜索关键字:some negative feelin    ( 9286个结果
智熄错误集合(慢慢补充)
(如果你不知道这些出锅了的技巧那就当我没说) 这个奇淫技巧在某些测评姬上可能re (通过this==0判断是否为“空”的结构体) ...
分类:其他好文   时间:2020-05-14 01:23:56    阅读次数:53
数组循环常用几种方法
// map filter some forEach every find findIndex reduce let arr = [7,4,5,6,2] //返回一个新数组, 长度不变。[7, 4, 5, 6, false] let a0 = arr.map( v => v > 3 && v) // ...
分类:编程语言   时间:2020-05-12 20:46:14    阅读次数:111
CA搭建与证书申请
一:创建私有CA openssl的配置文件:/etc/pki/tls/openssl.cnf根据此配置文件创建CA dir:CA相关文件存放路径 /etc/pki/CAcerts:证书存放目录 /etc/pki/CA/certsdatabase:数据库文件 /etc/pki/CA/index.txt ...
分类:其他好文   时间:2020-05-12 18:52:15    阅读次数:94
redis cluster集群部署方案
什么是 Redis 集群 Redis 集群是一个分布式(distributed)、容错(fault-tolerant)的 Redis 实现,集群可以使用的功能是普通单机 Redis 所能使用的功能的一个子集(subset)。 Redis 集群中不存在中心(central)节点或者代理(proxy)节 ...
分类:其他好文   时间:2020-05-11 15:46:26    阅读次数:70
js数组相关操作练习
var arr = [ 'a', 'b', 'c' ]; // 1. push (在数组最后再添加一个元素) arr.push('jirengu') //再数组最后添加一个元素 console.log(arr) const a =[1,2,3,4,5,6] console.log([...arr,. ...
分类:编程语言   时间:2020-05-11 13:36:31    阅读次数:59
找规律
题目 You are given a positive integer N(1≦N≦1e18). Find the number of the pairs of integers u and v(0≦u,v≦N) such that there exist two non-negative inte ...
分类:其他好文   时间:2020-05-11 13:07:17    阅读次数:68
深入理解ES6之《函数》
默认参数 ES5中要为参数指定默认值,只能如下所示: function makeRequst(url, timeout, callback) { timeout = timeout || 2000; callback = callback || function () { } } 但是这样有一个问题 ...
分类:其他好文   时间:2020-05-11 13:05:35    阅读次数:58
Classification
Abstract: Why you need to learn some ML knowledge at least. You know that ML has everwhere! When you are visiting though some e shop and click some go ...
分类:其他好文   时间:2020-05-11 00:39:46    阅读次数:80
1443. Minimum Time to Collect All Apples in a Tree
Given an undirected tree consisting of n vertices numbered from 0 to n-1, which has some apples in their vertices. You spend 1 second to walk over one ...
分类:移动开发   时间:2020-05-10 19:30:30    阅读次数:71
filter,forEach和some用法
一、forEach(),用于遍历数组,无返回值 二、some(),用于判断数组中的是否存在满足条件的元素,返回一个布尔值 三、filter(),用于筛选数组中满足条件的元素,返回一个筛选后的新数组 <!DOCTYPE html> <html lang="en"> <head> <meta chars ...
分类:其他好文   时间:2020-05-10 01:24:32    阅读次数:54
9286条   上一页 1 ... 28 29 30 31 32 ... 929 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!