Problem : Given a list of non negative integers, arrange them such that they form the largest number. Example 1: Example 2: Note: The result may be ve ...
分类:
其他好文 时间:
2020-04-04 22:44:47
阅读次数:
75
Problem : Given two arrays, write a function to compute their intersection. Example 1: Example 2: Note: Each element in the result must be unique. The ...
分类:
其他好文 时间:
2020-04-02 01:22:47
阅读次数:
64
implicitly_wait():隐式等待,是设置的全局等待。设置等待时间,是对页面中的所有元素设置加载时间,如果超出了设置时间的则抛出异常。隐式等待可以理解成在规定的时间范围内,浏览器在不停的刷新页面,直到找到相关元素或者时间结束。 WebDriverWait():显示等待,是针对于某个特定的元 ...
分类:
其他好文 时间:
2020-04-01 16:32:54
阅读次数:
485
[TOC] 芯片型号:STM32F103VET6(100个引脚),主频 72MHz,512KB FLASH ,64KB RAM 仿真调试:J LINK rtthread官方文档:https://www.rt thread.org/document/site/application note/syst ...
分类:
其他好文 时间:
2020-03-31 19:02:03
阅读次数:
394
安装就选个没有中文和空格路径就行了 EditPlus配置 配置好就能用了 notepad++ 选择路径 输入名称,确定 就配置好了一个命令 ...
分类:
其他好文 时间:
2020-03-31 14:32:25
阅读次数:
256
配置node0 # Elasticsearch Configuration # # NOTE: Elasticsearch comes with reasonable defaults for most settings. # Before you set out to tweak and tune ...
分类:
其他好文 时间:
2020-03-30 23:46:01
阅读次数:
129
Problem : Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element ...
分类:
其他好文 时间:
2020-03-30 16:41:09
阅读次数:
69
原因:格式不支持 解决办法:去下个notepad,打开方式选择notepad,文件属性的只读取消掉 打开后会发现最下面显示了文件的格式是unix,utf-8 右键红框处,选择转换为windows格式,会发现可以成功生成pb文件了 ...
分类:
其他好文 时间:
2020-03-30 16:22:07
阅读次数:
166
1.简介:作为DBA会经常需要检查所有的数据库或用户表,比如:检查所有数据库的容量;看看指定数据库所有用户表的容量,所有表的记录数...,我们一般处理这样的问题都是用游标分别处理处理,比如:在数据库检索效率非常慢时,我们想检查数据库所有的用户表,我们就必须通过写游标来达到要求;如果我们用sp_MSf ...
分类:
数据库 时间:
2020-03-30 09:24:46
阅读次数:
94
typeof 操作符 你可以使用 typeof 操作符来检测变量的数据类型。 typeof "John" // 返回 string typeof 3.14 // 返回 number typeof false // 返回 boolean typeof [1,2,3,4] // 返回 object ty ...
分类:
编程语言 时间:
2020-03-29 21:18:37
阅读次数:
75