📅  最后修改于: 2023-12-03 15:39:45.942000             🧑  作者: Mango
开发一个应用程序,能够找出一组海拔数据中的最高点。
max_height = altitude[0]
for i from 1 to n-1 do
if altitude[i] > max_height:
max_height = altitude[i]
return max_height
输入:
altitude = [3, 6, 1, 0, 5]
输出:
6
以下是Python的代码实现:
def find_highest_altitude(altitude):
"""
:type altitude: List[int]
:rtype: int
"""
max_height = altitude[0]
for i in range(1, len(altitude)):
if altitude[i] > max_height:
max_height = altitude[i]
return max_height
以上代码已经实现了找到最高海拔的功能,可以在实际使用中进行测试。