码迷,mamicode.com
首页 >  
搜索关键字:rip v2    ( 16828个结果
移动端调试神器 vconsole
多页面应用,在每个页面添加 <script src="path/to/vconsole.min.js"></script> <script> var vConsole = new VConsole() console.log('Hello vConsole') </script> 单页面应用 npm ...
分类:移动开发   时间:2020-06-28 15:11:43    阅读次数:140
JS Echarts之雷达图的使用
效果图: 这里给出了第一一个图的例子JS代码: 1 $(function () { var qxarr = new Array(7);//清洗数据5 var maxarr = new Array(7);//最优区间最大值 var minarr = new Array(7);//最优区间最小值 //三 ...
分类:Web程序   时间:2020-06-28 15:05:25    阅读次数:189
react+antd实现列表互不影响的展开每条内容
需求: 列表可以分别展开自己的内容,互不影响,我选择了手搓…… 每一条的展开or关闭状态,与内容展示,存为一个对象,最后合为一个数组,存放在状态里 const [content, setContent] = useState([]); 数据请求拿到数据以后处理一下数据: const fetchRec ...
分类:其他好文   时间:2020-06-28 15:03:05    阅读次数:39
argparse
cmd.py: # 导入argparse包 import argparse import math # 创建ArgumentParser实例,设置解析器 parser = argparse.ArgumentParser(description='Find the sum of two paramet ...
分类:其他好文   时间:2020-06-28 12:51:19    阅读次数:50
Node.js——Node+Mongodb 架构常见性能问题 (转)
转自: https://zhuanlan.zhihu.com/p/56010506 Node+Mongodb 架构常见性能问题总结 简介 目前的我们的一个项目,后端使用 node+mongodb+redis 搭建,已运行 2 年,目前日 pv 在 100W 左右。 配置: 两台阿里云 ECS (2 ...
分类:数据库   时间:2020-06-28 09:37:33    阅读次数:73
0343. Integer Break (M)
Integer Break (M) 题目 Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. R ...
分类:其他好文   时间:2020-06-28 09:27:07    阅读次数:43
观察者模式
// 被观察者 class Subject { constructor(name) { this.name = name; // 存放所有观察者 this.observers = []; // 心情状态 this.mood = "心情很美丽"; } // 接受观察者方法 attach(observe ...
分类:其他好文   时间:2020-06-27 11:53:36    阅读次数:70
HTML学习2
一、修饰标签 1.<i></i>与<em></em>:倾斜;英文italic 或者 emphasize 2.<b></b>与<strong></strong>:加粗 英文 bold 3.<sup></sup>上标:英文:superscript 4.<sub></sub>下标:英文:subscript ...
分类:Web程序   时间:2020-06-27 09:46:02    阅读次数:64
0041. First Missing Positive (H)
First Missing Positive (H) 题目 Given an unsorted integer array, find the smallest missing positive integer. Example 1: Input: [1,2,0] Output: 3 Example ...
分类:其他好文   时间:2020-06-27 09:31:04    阅读次数:53
Codeforces 1373E - Sum of Digits (构造)
Description 题目大意: $f(x)$为十进制下x每一位上的数字的和。求满足$f(x)+f(x+1)+...+f(x+k)=n$的最小x。 思路 由于k特别小(<=9),故x+k至多发生一次进位。x每加1,必有某一位加上1。如果发生进位,那么$f(x)$只要额外减去若干个9(进位发生后9变 ...
分类:其他好文   时间:2020-06-26 23:57:16    阅读次数:130
16828条   上一页 1 ... 72 73 74 75 76 ... 1683 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!