最新 最热

python 多进程 Manager(并行编程 20)

def worker(d, key, value): d[key] = value

2019-07-30
1

Python基础-条件与循环

python 是一门编程语言,是一门完全面向对象的编程语言。条件语句循环语句①条件语句形式:if 判断语句: 执行语句 1elif 判断语句2: 执行语

2019-07-18
1

【leetcode刷题】T27-每日温度

Given a list of daily temperatures T, return a list such that, for each day in the input, tells you how many days you would have to wait until a warmer temperat...

2019-07-18
1

间隔分区报错ORA-14758

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/bisal/article/details/90899719

2019-06-11
1

Pandas-22.日期范围

Pandas-22.日期创建日期范围的常用函数日期范围print(pd.date_range('2020-1-21', periods=5))'''DatetimeIndex(['2020-01-21', '2020-01-22', '2020-01-23&#x27...

2019-05-29
0

Pandas-21.时间

Pandas-21.时间nowprint(pd.datetime.now())# 2019-04-03 23:06:58.992842Timestampprint(pd.Timestamp("2020-1-1"))# 2020-01-01 00:00:00print(pd.Timestamp(158868...

2019-05-29
1

配置端口聚合提供冗余备份链路

验证测试:验证已创建了VLAN 10 ,并将0/5端口已划分到VLAN 10中

2019-05-28
1

LWC 74: 795. Number of Subarrays with Bounded Maximum

思路: 先关注一波性质,在L和R之间的最大值val符合 val in [L, R], 可以转为:求区间内的任意值x , x in [L, R]。所以,把数组的每个位置当作起点,如A = [2, 1, 4, 3]:...

2019-05-26
1

Pour Water

思路: 模拟,每次drop一滴水,接着从左边开始找坑,坑的定义如下,存在j,使得a[j] < a[j + 1] && a[j - 1] > a[j] , 找到j则填坑,找不到就从右边开始找坑,找到填坑,找不到填位置K。...

2019-05-26
1

Prime Number of Set Bits in Binary Representation

传送门:762. Prime Number of Set Bits in Binary Representation

2019-05-26
1