码迷,mamicode.com
首页 >  
搜索关键字:PAT    ( 13517个结果
PAT 2020年秋季 7-2 How Many Ways to Buy a Piece of Land (25 分)
The land is for sale in CyberCity, and is divided into several pieces. Here it is assumed that each piece of land has exactly two neighboring pieces, ...
分类:其他好文   时间:2021-03-11 19:32:24    阅读次数:0
PAT 2020年秋季 7-3 Left-View of Binary Tree (25 分)
The left-view of a binary tree is a list of nodes obtained by looking at the tree from left hand side and from top down. For example, given a tree sho ...
分类:其他好文   时间:2021-03-11 18:26:16    阅读次数:0
Appium入门
手机驱动对象 驱动对象会帮助我们完成手机和脚本之间交互. 导入driver对象 from appium import webdriver 声明手机驱动对象 只有声明驱动对象我们才可以让手机完成脚本的操作,声明的方法如下: driver = webdriver.Remote('http://127.0 ...
分类:移动开发   时间:2021-03-11 15:09:44    阅读次数:0
MySQL-NDB7.6集群部署
环境准备 软件部署设计 用途 组件 SQL nodes mysqld binary Data nodes ndbd or ndbmtd Management nodes ndb_mgmd and ndb_mgm IP网络设计 Node IP Address Management node (mgmd ...
分类:数据库   时间:2021-03-10 13:21:06    阅读次数:0
(5)elasticsearch配置文件
【0】默认文件内容 #(1)cluster#cluster.name:集群名称 # 默认名称为 elasticsearch#(2)node #node.name:node-1 #默认为计算机名,但应该为节点起一个描述性名称 #node.attr.rack:r1 #添加自定义的节点属性 #(3)pat ...
分类:其他好文   时间:2021-03-10 13:08:38    阅读次数:0
C# Path
var filePath = @"c:\doc\1.txt"; var dirPath1 = @"c:\music\"; var dirPath2 = @"c:\movie"; #路径拼接 Console.WriteLine(Path.Combine(dirPath1, "a.mp3")); //c ...
分类:Windows程序   时间:2021-03-10 12:57:56    阅读次数:0
selenium键盘操作篇
在python的selenium中,要模拟键盘操作,需要导入Keys类:from selenium.webdriver.common.keys import Keys Keys类用模拟键盘的什么行为呢?其实,可以模拟键盘的任何行为,如单个键,组合键等。 from selenium import we ...
分类:其他好文   时间:2021-03-09 13:39:53    阅读次数:0
leetcode每日一题之8.分割回文串
分割回文串 回溯算法 求所有解,所以使用回溯算法来枚举所有的解。代码如下 class Solution { /** * @param String $s * @return String[][] */ function partition($s) { $res = []; $this->backtr ...
分类:其他好文   时间:2021-03-08 14:15:59    阅读次数:0
uinttest单元测试框架
转:https://www.cnblogs.com/yufeihlf/p/5707929.html unittest是python中自带的单元测试框架,用来做单元测试 uinttestd的属性如下: unitetest.TestCase :测试用例 unittest.TestSuite():多个测试 ...
分类:其他好文   时间:2021-03-04 13:06:23    阅读次数:0
3/2 JavaScript 关于 exec 和 match
写在前面 只是记录一下学习过程 ... Exec 怎么说呢, 我认为的 exec 是返回 下一次 exec 的起始位置 即 lastIndex ( 对于 标志 g 全局匹配 才有大用处 ) lastIndex 是 正则表达式 实例 即 RegExp 实例 中的一个属性 表示 在源字符串 中下一次搜索 ...
分类:编程语言   时间:2021-03-03 12:15:10    阅读次数:0
13517条   上一页 1 ... 13 14 15 16 17 ... 1352 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!