最新 最热

秒懂 QPS、TPS、PV、UV!

QPS(Query Per Second):每秒请求数,就是说服务器在一秒的时间内处理了多少个请求。QPS于TPS的概念很类似,本人很多时候甚至不做两者的详细区分。QPS的数值需要通过下面的指标得到。...

2021-01-08
0

np.unique

对于一维数组或者列表,unique函数去除其中重复的元素,并按元素由小到大返回一个新的无元素重复的元组或者列表

2021-01-06
0

C++核心准则讨论:按值返回容器(依靠移动或复制省略高效率)

To simplify code and eliminate a need for explicit memory management. To bring an object into a surrounding scope, thereby extending its lifetime.

2020-12-31
1

UnhandledPromiseRejectionWarning报错解决方案

UnhandledPromiseRejectionWarning: MongoError: E11000 duplicate key error collection:

2020-11-09
0

2019.9.19最小生成树知识点总结

​​​​​HDU 1102 Constructing Roads(最小生成树-Prim) 最常见的,将已建成的路的权值设置为0,求最小生成树! HDU 1162 Eddy's picture(最小生成树-Prim) 裸题,联系敲板子吧! POJ 2560 Freckles(最小生成树-Krus...

2020-10-28
1

sklearn的predict_proba使用说明

我的理解:predict_proba不同于predict,它返回的预测值为,获得所有结果的概率。(有多少个分类结果,每行就有多少个概率,以至于它对每个结果都有一个可能,如0、1就有两个概率)...

2020-10-21
0

laravel5表单唯一验证的实例代码

这样,在update数据时,如果未修改email字段的值,将不会检测unique。create时总是检测unique

2020-10-20
0

DFS - 980. Unique Paths III

On a 2-dimensional grid, there are 4 types of squares:

2020-09-23
0

Tree - 96. Unique Binary Search Trees

96. Unique Binary Search TreesGiven n, how many structurally unique BST's (binary search trees) tha

2020-09-23
0

Backtracking - 39. Combination Sum

Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the candidate ...

2020-09-23
0