You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.6 寻找10x10数组最大值
(1). 解题思路
10x10
的数组可以通过你numpy.random.rand
函数通过给定10x10
的维度生成,然后直接调用内置方法max
与min
可以找到数组中的最大最小值。
(2). 运行结果
