gpt4 book ai didi

python - 定义获取列表中最高产品对的函数

转载 作者:太空宇宙 更新时间:2023-11-04 09:37:06 25 4
gpt4 key购买 nike

我正在尝试编写一个函数,它给出列表中最高的一对相邻元素的乘积。对于我的代码,

gala = [1, 2, 3, 4, 5]
def adjacentElementsProduct(inputArray):
for i in range(len(inputArray)):
if inputArray[i] * inputArray[i+1] > inputArray[i+1] * inputArray[i+2]:
return inputArray[i] * inputArray[i+1]
elif inputArray[i+1] * inputArray[i+2] > inputArray[i] * inputArray[i+1] and inputArray[i+1] * inputArray[i+2] > inputArray[i+2] * inputArray[i+3]:
return inputArray[i+1] * inputArray[i+2]
elif inputArray[i+2] * inputArray[i+3] > inputArray[i+1] * inputArray[i+2] and inputArray[i+2] * inputArray[i+3] > inputArray[i+3] * inputArray[i+4]:
return inputArray[i+2] * inputArray[i+3]
else:
return inputArray[i+3] * inputArray[i+4]
return adjacentElementsProduct

adjacentElementsProduct(gala)

此处输出为 20(因为 4 x 5 是最高的相邻对)。即使我更改数字及其符号的顺序,此功能也适用于给定列表。但是,如果列表的长度发生变化,那么代码就会中断。如果列表是

gala = [1, -6]

gala = [2, 5, 7, -9, 10, 0, 11]

我希望函数第一个列表的输出为 -6,第二个为 35。但我的函数因此类列表而中断。

最佳答案

如果我没有正确理解您的问题,我认为您的功能可以简化为:

def adjacentElementsProduct(elm):
if len(elm) < 2:
return None
return max(k*v for k, v in zip(elm, elm[1:]))

所以:

>>> adjacentElementsProduct([1, 2, 3, 4, 5])
20
>>> adjacentElementsProduct([1, -6])
-6
>>> adjacentElementsProduct([2, 5, 7, -9, 10, 0, 11])
35

关于python - 定义获取列表中最高产品对的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53244798/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com