本场链接:Deltix Round, Spring 2021 (open for everyone, rated, Div. 1 + Div. 2) 闲话 E估计是补不了,看情况吧。 A. Game of Life 直接模拟,至多迭代$n-1$次,如果没有修改的操作就直接退出。 #include < ...
分类:
编程语言 时间:
2021-06-02 20:37:17
阅读次数:
0
ExecutorService executorService = Executors.newSingleThreadExecutor(); Future<String> future = executorService.submit(() -> myJob(param)); try { //设置超 ...
分类:
编程语言 时间:
2021-06-02 20:35:20
阅读次数:
0
var intList = new List<int>() { 1 }; var readOnlyList = new ReadOnlyCollection<int>(intList); var immutableList = intList.ToImmutableList(); Console.F ...
静态定位 <style> .parent{ width: 300px; height: 300px; background-color: aqua; } .child{ width: 100px; height: 100px; background-color: pink; /* 静态定位 posi ...
分类:
其他好文 时间:
2021-06-02 20:33:41
阅读次数:
0
const int MOD = 1e9 + 7; struct ModularIntegers { int num; template <typename T> ModularIntegers(const T& x) { if(x >= 0 && x < MOD) num = x; else { n ...
分类:
其他好文 时间:
2021-06-02 20:32:48
阅读次数:
0
Linux 系统学习 Linux的具体目录结构 root 该目录为系统管理员目录,root是具有超级权限的用户; Bin->usr/bin 存放系统预装的可执行程序,这里存放的可执行文件可以在系统的任何目录下执行 usr 是linux的系统资源目录,里边存放都是一些系统可执行文件或者系统以来的一些文 ...
分类:
系统相关 时间:
2021-06-02 20:30:43
阅读次数:
0
markdown学习 二级标题 三级标题 注释:#空格+文字为一级标题 ##空格+文字为二级标题 最多到六级###### 字体 你好 你好 你好 注释:加粗:字体文字 斜体:文字 划掉:文字 引用 你好啊,兄弟 注释:>+文字 分割线 注释:***或 图片 —— 注释:1.本地 ...
分类:
其他好文 时间:
2021-06-02 20:27:14
阅读次数:
0
part1数据探索及数据处理 数据处理 # 复制原数据 df3 = df.copy() df3.info() <class 'pandas.core.frame.DataFrame'> RangeIndex: 3004 entries, 0 to 3003 Data columns (total 7 ...
分类:
其他好文 时间:
2021-06-02 20:25:18
阅读次数:
0
springboot微服务之间通常使用feign进行接口调用,那么在此基础上文件上传如何操作呢? 最近项目中碰到了这种需求,此处分享一下使用心得,希望对大家有帮助!!! 一、我这里使用的相关包如下,其它的大家视情况而定 <dependency> <groupId>io.github.openfeig ...
分类:
编程语言 时间:
2021-06-02 20:23:36
阅读次数:
0
#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:
系统相关 时间:
2021-06-02 20:19:59
阅读次数:
0