码迷,mamicode.com
首页 >  
搜索关键字:reg    ( 6610个结果
js时间转换
参考博客: https://www.cnblogs.com/tugenhua0707/p/3776808.html 代码: Date.prototype.format = function(fmt) { var o = { "M+" : this.getMonth()+1, //月份 "d+" : ...
分类:Web程序   时间:2021-05-24 00:40:16    阅读次数:0
github rep
https://github.com/vinta/awesome-python https://github.com/diffgram/diffgram https://machinelearningmastery.com/ensemble-machine-learning-with-python- ...
分类:其他好文   时间:2021-05-24 00:25:56    阅读次数:0
[CF914F] Substrings in a String
\(\text{Problem}:\)Substrings in a String \(\text{Solution}:\) 考虑分块,对每个块建出后缀自动机。 修改:暴力重建 \(i\) 所在块的 \(\text{SAM}\)。 查询:分类讨论处理。 若 \(\lvert s\rvert> B\) ...
分类:其他好文   时间:2021-05-04 15:19:13    阅读次数:0
[CF702F] T-Shirts
\(\text{Problem}:\)T-Shirts \(\text{Solution}:\) 在序列操作的问题中,一种常规的思想是使得被操作物品的信息尽可能少。故转化题目为:将物品以 \(q_{i}\) 从大到小为第一关键字,\(c_{i}\) 从小到大为第二关键字排序。枚举物品 \(i\),对 ...
分类:其他好文   时间:2021-05-03 12:12:04    阅读次数:0
常用正则表达式
1.校验邮箱格式 reg=/^([\w+\.])+@\w+([.]\w+)+$/; 2. 正则判断是否包含用.* (是否包含数字 reg = /.*\d.*/g; reg = /\d+/g; reg = /[0-9]/;)3. 正则判断是否包含连续重复字符用 \1 (是否包含连续重复字母 /([a- ...
分类:其他好文   时间:2021-05-03 11:41:56    阅读次数:0
打印电影信息
package com.itheima.demo02; public class ShangYingDianYing { public static void main(String[] args) { String starring = "刘鑫 张玉提 高源"; System.out.printl ...
分类:其他好文   时间:2021-04-30 11:59:42    阅读次数:0
consul 重启后 id 重新生成,导致该consul不能接收服务注册问题解决。
一、问题 最近测试环境的 consul 发生了重启 但是重启之后,发现服务注册不上去了,查看consul 的日志,发现了下面的信息。 2021/04/28 06:40:55 [WARN] agent: Syncing service "uat_10.60.6.30:davietest:8092" f ...
分类:其他好文   时间:2021-04-29 12:11:26    阅读次数:0
[CF997C] Sky Full of Stars
\(\text{Problem}:\)Sky Full of Stars \(\text{Solution}:\) 答案即总方案数减去没有一行或一列是同种颜色的方案数。 设 \(f_{i,j}\) 表示恰好有 \(i\) 行 \(j\) 列是同种颜色的方案数,\(g_{i,j}\) 表示钦定有 \( ...
分类:其他好文   时间:2021-04-28 11:55:09    阅读次数:0
centos8编译安装php8
2021年4月24日17:29:22 环境: php8.0.3 centos 8.3 ./configure \ --prefix=/usr/local/php8 \ --with-config-file-path=/usr/local/php8/etc \ --with-curl \ --with ...
分类:Web程序   时间:2021-04-27 15:21:59    阅读次数:0
常用工作命令集合
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:其他好文   时间:2021-04-27 15:16:42    阅读次数:0
6610条   上一页 1 ... 3 4 5 6 7 ... 661 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!