码迷,mamicode.com
首页 >  
搜索关键字:search for a range    ( 21670个结果
6-20 位密码交验正则
/*** * 校验密码 能匹配的组合为:数字+字母,数字+特殊字符,字母+特殊字符,数字+字母+特殊字符组合,而且不能是纯数字,纯字母,纯特殊字符 */ public static function checkPwd($pwd) { $search = '/^(?![\d]+$)(?![a-zA-Z ...
分类:其他好文   时间:2021-05-25 18:31:40    阅读次数:0
python输出所有三位数的回文数
for i in range(100, 1000): if str(i) == str(i)[::-1]: print(i) # 输出结果 101 111 121 131 141 151 161 171 181 191 202 212 222 232 242 252 262 272 282 292 ...
分类:编程语言   时间:2021-05-25 18:16:06    阅读次数:0
算法打卡 week10
437. 路径总和 III class Solution: def pathSum(self, root: TreeNode, sum: int) -> int: dp = {} def search(root: TreeNode): if root: search(root.left) searc ...
分类:编程语言   时间:2021-05-24 17:23:14    阅读次数:0
Docker命令大全
初级命令 搜索镜像 docker search ubuntu //一般靠前的是官方镜像,其他是用户自己创建并分享的 下载镜像 docker pull ubuntu //默认下载最新版本的 列出下载的镜像 docker images 创建并使用容器 docker run -i -t --name he ...
分类:其他好文   时间:2021-05-24 14:34:45    阅读次数:0
[设计模式]3.1简单工厂模式
一、卖票案例 //测试 public class CilentTest { public static void main(String arg[]){ Customer p1=new Children(); System.out.println(p1.calculate(100.00)); Cus ...
分类:其他好文   时间:2021-05-24 14:17:47    阅读次数:0
用python写九九乘法表
for i in range(1,10): for j in range(1,i+1): print(i,"*",j,"=",i*j, "\t",end="") else: print("") 1 * 1 = 1 2 * 1 = 2 2 * 2 = 4 3 * 1 = 3 3 * 2 = 6 3 * ...
分类:编程语言   时间:2021-05-24 13:38:54    阅读次数:0
python之公共方法
1、公共方法 2、公共方法之总结 3、range()方法 4、enumerate()方法 ...
分类:编程语言   时间:2021-05-24 13:36:03    阅读次数:0
ArcGIS Server 10.2 安装教程
arcgis 相关安装 见 http://www.driver114.com/plus/search.php?keyword=arcgis&searchtype=titlekeyword&channeltype=0&orderby=&kwtype=0&pagesize=10&typeid=0&Tot ...
分类:其他好文   时间:2021-05-24 12:53:03    阅读次数:0
20210515# 【spring源码全集】B站唯一阿里P8级别的架构师教程
说明 视频地址: https://www.bilibili.com/video/BV1uE411d7L5?from=search&seid=6807897890479939370 博客地址: https://blog.csdn.net/java_lyvee content 1 spring中的循环依 ...
分类:编程语言   时间:2021-05-24 10:19:14    阅读次数:0
qml 练习一
import QtQuick 2.9 // 导入模块 import QtQuick.Window 2.2 import QtQuick.Controls 2.2 // 导入的模块 Window { visible: true width: 640 height: 480 title: qsTr("H ...
分类:其他好文   时间:2021-05-24 10:03:58    阅读次数:0
21670条   上一页 1 ... 9 10 11 12 13 ... 2167 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!