Function cc() Dim rng As Range For Each rng In Range("A1:G10") If rng.Interior.Color = RGB(255, 255, 0) Then cc = 1 + cc End If Next rng End Function ...
分类:
编程语言 时间:
2020-12-01 12:44:41
阅读次数:
22
Test Vehicle Model: Ford Ranger 2020 Programming: All Key Lost, Add a New Smart Key Tool Required: Autel IM508 and XP200 Ford Ranger 2020 Add Smart Ke ...
分类:
其他好文 时间:
2020-12-01 12:36:12
阅读次数:
8
一、列表推导式 如何生成一个[data0、data1、data2.....data99]的列表?? 循环方法: list1=[] for i in range(100): list1.append('data{}'.format(i)) print("list1的值为:",list1) 用列表推导式 ...
分类:
其他好文 时间:
2020-12-01 12:25:48
阅读次数:
7
{ "size": 0, "query": { "bool": { "filter": [ { "range": { "@timestamp": { "gte": 1596572166943, "lte": 1596593766943, "format": "epoch_millis" } } }, ...
分类:
其他好文 时间:
2020-12-01 12:04:43
阅读次数:
3
Sumdiv Time Limit: 1000MS Memory Limit: 30000K Total Submissions: 37483 Accepted: 9161 Description Consider two natural numbers A and B. Let S be the ...
分类:
其他好文 时间:
2020-11-27 11:53:21
阅读次数:
25
一、配置 1.添加依赖 在 springboot 启动器中直接添加依赖,或者创建后添加 Maven 依赖: <!--spring-boot-starter-data-redis--> <dependency> <groupId>org.springframework.boot</groupId> < ...
分类:
编程语言 时间:
2020-11-27 11:49:48
阅读次数:
20
参考: https://blog.csdn.net/paul_wei2008/article/details/19355681 https://blog.csdn.net/ygl19920119/article/details/88342523 Dubbo基本原理机制 分布式服务框架: –高性能和透 ...
分类:
其他好文 时间:
2020-11-26 14:10:33
阅读次数:
3
1、面试题 17.10. 主要元素 https://leetcode-cn.com/problems/find-majority-element-lcci/ 考点: class Solution: def majorityElement(self, nums: List[int]) -> int: ...
分类:
编程语言 时间:
2020-11-25 12:48:30
阅读次数:
8
如果需要用二维表格形式表达的内容,就需要用双重循环。外层的i表示行,内层的j表示有多少列。 注意循环条件的控制,特别是内层循环的条件是难点。 典型例题就是99乘法表的打印。 ''' 1*1=1 1*2=2 2*2=4 1*3=3 2*3=6 3*3=9 1*4=4 2*4=8 3*4=12 4*4= ...
分类:
其他好文 时间:
2020-11-25 12:27:22
阅读次数:
4
#第一题:#有四个数字:1、2、3、4,能组成多少个互不相同且无重复数字的三位数?各是多少?#解决方法:for i in range(1,5): for j in range(1,5): for k in range(1,5): if (i != k ) and ( i !=j )and ( j ! ...
分类:
编程语言 时间:
2020-11-25 12:09:01
阅读次数:
7