Description: Given a string s and a string array dictionary, return the longest string in the dictionary that can be formed by deleting some of the gi ...
分类:
其他好文 时间:
2021-04-05 12:21:20
阅读次数:
0
1 function timeChange(time) { 2 var date = new Date(time);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 3 var Y = date.getFullYear() + '-'; 4 var M = (date.getMont ...
分类:
其他好文 时间:
2021-03-31 12:19:55
阅读次数:
0
loader我的理解是把非js的模块转换成js模块,毕竟浏览器只认识js语言 当处理一种类型模块的时候,多个loader配置时从右向左进行应用 loader使用主要有以下三种方式: module.exports = { module:{ rules:[ { test: /\.less$/, load ...
分类:
Web程序 时间:
2021-03-30 13:52:20
阅读次数:
0
引申 1.Guava Cache和Ehcache一样也是本地缓存,虽然都是本地缓存,但是在细分领域中也还是有不同的应用场景,Guava是Google提供的一套Java工具包,而GuavaCache作为Guava的Cache部分而提供了一套非常完善的本地缓存机制。在Guava之前,JDK的Concur ...
分类:
系统相关 时间:
2021-03-30 13:27:56
阅读次数:
0
博客迁移计划12 \(\rightarrow\) 戳我看CF原题 C. Useful Decomposition time limit per test: 1 second memory limit per test: 256 megabytes input: standard input outp ...
分类:
其他好文 时间:
2021-03-30 13:14:19
阅读次数:
0
fabrci源码记录2 writer:布羽 ProtoBuf 在fabric中,交换数据的格式采用protobuf,而非XML或者JSON。其引入了fabric-rpotos-go这个底层项目。 https://github.com/hyperledger/fabric-protos-go fabr ...
分类:
其他好文 时间:
2021-03-30 12:58:01
阅读次数:
0
由于意外故障,volume-type其中一个backend后段出现性能问题,客户云主机出现卡顿。 因此临时从ceph将系统卷导出,并导入至同一个backend的另一个后端,并启动虚拟机。 Nova Cinder 数据库操作记录 在nova api节点登录nova数据库修改BDM表信息 select ...
分类:
数据库 时间:
2021-03-18 14:32:50
阅读次数:
0
redis:纯内存数据库,RDB和aof是为了数据恢复,key-value只能通过key查询,可以虚拟内存,弱事务 (redis在一些接口中比如 api, rpc中使用,主要是封装在mysql上层,减轻mysql的压力,个访问行为 会从redis取数据,如果没有从mysql取, 然后存到redis) ...
分类:
数据库 时间:
2021-03-17 14:46:57
阅读次数:
0
Python 列表与字典 1 列表(Lists) 列表其实就是Python的数组,它支持动态调整大小,并且可以包含不同类型的元素。 a = [] 列表的常用方法包括count(key),index(value),reverse(),sort(),append(value),pop() 切片操作: n ...
分类:
编程语言 时间:
2021-03-17 14:08:36
阅读次数:
0
类型转换 public class 类的转换 { public static void main(String[] args) {? /*类型转换 低 高 byte,short,char-int-long-float-double 高到低强制转换,低到高自动转换 */? //强制转换? int a ...
分类:
其他好文 时间:
2021-03-16 14:07:25
阅读次数:
0