摘要:
#1.数组中不等三元组的数目 数组中不等三元组的数目 ##Solution class Solution { public: int unequalTriplets(vector<int>& nums) { int n = nums.size(); int cnt = 0; for(int i = 阅读全文
摘要:
1 df.iloc 官方文档中定义为“基于整数位置的索引,用于按位置选择。” df.iloc就是只根据行列号对数据进行切片或选择。当作数组取数就行。 df.iloc [ raw , col ]:第一个参数raw表示行选,第二个参数表示列选,都必须是整数。 例子: import pandas as p 阅读全文
摘要:
numpy.random.RandomState()函数 1.函数用法 功能 :可以通过numpy工具包生成模拟数据集,使用RandomState获得随机数生成器。 一般拿来对初始化模型的权重。 1.np.random.normal()函数 Parameters loc:float or array 阅读全文
摘要:
#1.根据规则将箱子分类 根据规则将箱子分类 ##Solution class Solution { public: string categorizeBox(int length, int width, int height, int mass) { long long w = 1e4, v = 阅读全文