最新 最热

006:Redis-Set集合类型操作使用

所谓的集合好比一个乾坤袋,什么东西都可以放进去,但是每个集合中的各个元素不能重复。

2021-11-22
0

分享一份 DiD 板书讲稿

这学期《计量经济学专题研讨》聚焦经济学研究中常用的因果推断方法(causal inference),分 Potential Outcome Model and Regression、Randomized Experiment/Field Experiment/Natural Experiment、Matching Me......

2021-11-02
0

Python中函数 __str__ 和 __repr__ 的区别

注:str()和repr()函数分别调用的是 __str__ 和 __repr__

2021-09-07
0

揭秘视频千倍压缩背后的技术原理之预测技术

视频相关的技术,特别是视频压缩,因其专业性,深入开发的门槛较高。具体到视频实时通信场景,视频压缩技术面临更严峻的挑战,因为实时通信场景下,对时延要求非常高,对设备适配的要求也非常高,对带宽适应的要求也非常高,开发一款满...

2021-09-01
0

LeetCode 0219 - Contains Duplicate II

Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute d...

2021-08-11
0

LeetCode 0220 - Contains Duplicate III

Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] and nums[j] i...

2021-08-11
0

LeetCode 0376 - Wiggle Subsequence

A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and negative. The first diff...

2021-08-11
0

Python学习笔记04-基础篇—元组、集合与字典

上一节我们介绍了列表List,在对列表进行使用的时候是可以修改其内部元素值的。有时候我们需要创建一系列不可修改的元素,便会用到元组。

2021-08-05
0

从c++标准库指针萃取器谈一下traits技法

本篇文章基于gcc中标准库源码剖析一下标准库中的模板类pointer_traits,并且以此为例理解一下traits技法。

2021-07-14
0

python set 一些用法

add(增加元素)name = set(['Tom','Lucy','Ben'])name.add('Juny')print(name)#输出:{'Lucy', 'Juny', 'Ben', 'Tom'}clear(清空所...

2021-04-30
0