Range("k4") = Range("d:d").Find(Range("j4")).Offset(0, 3) range("d:d").find(range("j4")).offset(0,3).clearcontents '删除找到的内容 sub 查找() dim rng as range ...
分类:
其他好文 时间:
2020-02-12 10:31:21
阅读次数:
67
1 """ 2 Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. 3 Exa ...
分类:
其他好文 时间:
2020-02-12 00:58:45
阅读次数:
82
.find_all(name,attrs,recursive,string,**kwargs) name:对标签名称的检索字符串attrs:对标签属性值的检索字符串,可标注属性检索recursive:是否对子孙全部检索,默认为Truestring <>....</>中字符串区域的检索字符串 soup ...
分类:
其他好文 时间:
2020-02-12 00:36:59
阅读次数:
68
题目: Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left corner (row1, col1) and lower right corner ( ...
分类:
编程语言 时间:
2020-02-12 00:30:01
阅读次数:
62
LeetCode 0167: Two Sum II Input array is sorted【Python】 题目 "英文题目链接" Given an array of integers that is already sorted in ascending order\ , find two n ...
分类:
编程语言 时间:
2020-02-12 00:19:27
阅读次数:
74
查找文本 sudo find /etc/nginx |xargs grep 'proxy' celery -A OnlinePay worker --loglevel=info --concurrency=1 ...
分类:
系统相关 时间:
2020-02-11 19:10:47
阅读次数:
114
当文件内容较多时,从头开始显示文件内容(enter往后看一行,空格往下翻页B往回翻页按q键退出) 管道 把左边返回的数据交给右边处理 grep命令:文本搜索(相当于ctrl+F) 1.查找带有指定文本的内容 2.查找指定文本在哪一行 grep -n 搜索文本 指定文件 3.不区分大小写搜索 grep ...
分类:
系统相关 时间:
2020-02-11 11:31:12
阅读次数:
136
今天用pip安装skimage时报错: 这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源 命令改为: pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 或者 p ...
分类:
编程语言 时间:
2020-02-11 09:24:45
阅读次数:
95
本模板合集将持续更新 数据结构 并查集 编写次数:29 ...
分类:
其他好文 时间:
2020-02-11 00:20:05
阅读次数:
74
#查看collection内 某个字段条目数 db.dictionary_system.find({"name":"xxx"}).count() #清空某个collection的字段,很危险,很危险,很危险,不要执行,不要执行,不要执行!!!!他会把有name的都干掉!!!!删除用下面的remove ...
分类:
其他好文 时间:
2020-02-10 22:50:08
阅读次数:
91