码迷,mamicode.com
首页 >  
搜索关键字:numbers range    ( 16974个结果
aws - VPC
Amazon Virtual Private Cloud (Amazon VPC) is a service that lets you launch AWS resources in a logically isolated virtual network that you define. You ...
分类:其他好文   时间:2021-06-02 15:44:17    阅读次数:0
AI算子列表
AI算子列表 概述 目前只有部分算子可在一个库中同时运行在MLU220和MLU270平台。也就是用户使用 ./build_cnplugin.sh --mlu270 命令编译生成的 libcnplugin.so 文件可同时在MLU220和MLU270上运行,其余算子只能在MLU270上运行。支持MLU ...
分类:其他好文   时间:2021-06-02 13:02:34    阅读次数:0
Python列表初始化的坑
二维列表初始化 L=[[0]*n]*m方式初始化 初始化一个 \(m\times n\) 的二维列表,初值全为0 L=[[0]*3]*2 print("初始的:",L) #赋值 for i in range(2): for j in range(3): L[i][j]=i+j print("赋值后: ...
分类:编程语言   时间:2021-06-02 12:38:38    阅读次数:0
每日算法-Shell-有效电话号码
给定一个包含电话号码列表(一行一个电话号码)的文本文件 file.txt,写一个单行 bash 脚本输出所有有效的电话号码。 你可以假设一个有效的电话号码必须满足以下两种格式: (xxx) xxx-xxxx 或 xxx-xxx-xxxx。(x 表示一个数字) 你也可以假设每行前后没有多余的空格字符。 ...
分类:编程语言   时间:2021-06-02 10:54:40    阅读次数:0
numpy
一、numpy库 1.numpy简介 多维数组库,创建多维数组很方便,可以替代多维列表 速度比多维列表快 支持向量和矩阵的各种数学运算 所有元素类型必须相同 pip install numpy 安装numpy库 2.numpy创建数组的函数 函数 功能 array(x) 根据列表或元组x创建数组 a ...
分类:其他好文   时间:2021-06-02 10:46:26    阅读次数:0
Matplotlib(直方图) - hist()参数解释
plt.hist(x, bins=None, range=None, density=None, weights=None, cumulative=False, bottom=None, histtype='bar', align='mid', orientation='vertical', rwi ...
分类:其他好文   时间:2021-06-02 10:32:00    阅读次数:0
python输出所有三位数的回文数
for i in range(100, 1000): if str(i) == str(i)[::-1]: print(i) # 输出结果 101 111 121 131 141 151 161 171 181 191 202 212 222 232 242 252 262 272 282 292 ...
分类:编程语言   时间:2021-05-25 18:16:06    阅读次数:0
[设计模式]3.1简单工厂模式
一、卖票案例 //测试 public class CilentTest { public static void main(String arg[]){ Customer p1=new Children(); System.out.println(p1.calculate(100.00)); Cus ...
分类:其他好文   时间:2021-05-24 14:17:47    阅读次数:0
数据结构 03-树2 List Leaves (25 分)
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:其他好文   时间:2021-05-24 14:03:04    阅读次数:0
数据结构 02-线性结构4 Pop Sequence (25 分)
Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to tell if a given s ...
分类:其他好文   时间:2021-05-24 13:43:08    阅读次数:0
16974条   上一页 1 ... 6 7 8 9 10 ... 1698 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!