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.

299 B

1.6 寻找10x10数组最大值

(1). 解题思路

10x10的数组可以通过你numpy.random.rand函数通过给定10x10的维度生成,然后直接调用内置方法maxmin可以找到数组中的最大最小值。

(2). 运行结果