Python实现:P5724 【深基4.习5】求极差 / 最大跨度值

文章目录
题目源代码思路numpy.maxnumpy.min

题目

代码
#法1:利用列表性质求
n = int(input())
list = list(map(int, input().split()))
list.sort()
max = list[-1]
min = list[0]
print(max - min)

#法2:利用numpy求最大最小值函数
import numpy as np
n = int(input())
list = list(map(int, input().split()))
max = np.max(list)
min = np.min(list)
print(max - min)

思路
法1利用sort函数将列表升序排列,则最大值是列表的最后一个,可使用反向索引求得;最小值是第一个,因此用正向索引求。反向索引第一个是-1,正向索引 索

Python实现:P5724 【深基4.习5】求极差 / 最大跨度值最先出现在Python成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/17291.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>