1,VScoed 首先安装Debugger fro Chrome 首先配置vue.config.js module.exports = { configureWebpack: { devtool: 'source-map' } } 然后配置VScode运行和调试 { // 使用 IntelliSen ...
分类:
其他好文 时间:
2021-05-24 04:01:57
阅读次数:
0
B.Willis and Fibonacci Sequence 题意: n的范围是10^9,f[i]是斐波那契数列,求f[i] / 2^n 的前n项和 思路:(打表)(精度) 打表,打表出前100项的答案,因为指数增长比斐波那契数列增长速度大得多,这个题的精度只有10^-6,最后发现第72项以后的答 ...
分类:
其他好文 时间:
2021-05-24 02:10:21
阅读次数:
0
整理压缩代码 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using Syste ...
def numpy_split_pd(df, split_num): # 使用numpy拆分DataFrame 把索引均分 均分后再用索引拆分DataFrame lst_index = list(map(lambda a: a.tolist(), numpy.array_split(df.index ...
分类:
其他好文 时间:
2021-05-24 01:08:44
阅读次数:
0
BeanUtils工具类,简化数据封装 * 用于封装JavaBean的 1. JavaBean:标准的Java类 1. 要求: 1. 类必须被public修饰 2. 必须提供空参的构造器 3. 成员变量必须使用private修饰 4. 提供公共setter和getter方法 2. 功能:封装数据 2 ...
分类:
其他好文 时间:
2021-05-24 01:00:17
阅读次数:
0
Map接口详解 1.Map接口特点 Map 和Collection并列存在,用于保存具有映射关系的数据,即一个键值对(key -- value) Map中的key和value可以是任何引用类型的数据,会封装到HashMap$Node对象中(Node是一个内部类) Map中的key不允许重复(hash ...
分类:
其他好文 时间:
2021-05-24 00:54:01
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cmath> #include <map> #define int long long using namespace std; const int N = 100 ...
分类:
其他好文 时间:
2021-05-24 00:04:21
阅读次数:
0
1 for循环 2 import com.google.common.base.Function; 3 import com.google.common.collect.Maps; 4 5 import java.util.ArrayList; 6 import java.util.HashMap; ...
分类:
其他好文 时间:
2021-05-23 23:53:14
阅读次数:
0
在程序文件夹位置上右键单击,选择 Add Framework Support...,在出来的框框里面把 Scala 勾上就可以了 ...
分类:
其他好文 时间:
2021-05-20 17:48:54
阅读次数:
0
@PathVariable 映射 URL 绑定的占位符通过 @PathVariable 可以将 URL 中占位符参数绑定到控制器处理方法的入参中:URL 中的 {xxx} 占位符可以通过 @PathVariable(“xxx”) 绑定到操作方法的入参中。 一般与@RequestMapping(met ...
分类:
其他好文 时间:
2021-05-03 13:00:42
阅读次数:
0