# 不是最优解,最优解应该用topK的思路
class Solution:
def maximumProduct(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
nums.sort()
res = [nums[-3]*nums[-2]*nums[-1], nums[0]*nums[1]*nums[-1]]
return max(res)
原文地址:https://www.cnblogs.com/theodoric008/p/9449449.html
时间: 2024-10-31 03:44:31