leetcode628 python3 124ms 三个数字的最大乘积

Posted theodoric008

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode628 python3 124ms 三个数字的最大乘积相关的知识,希望对你有一定的参考价值。

# 不是最优解,最优解应该用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)
        

以上是关于leetcode628 python3 124ms 三个数字的最大乘积的主要内容,如果未能解决你的问题,请参考以下文章

leetcode169 python3 92ms 求众数

Leetcode - 628 Maximum Product of Three Numbers

leetcode559 Python3 128ms N叉树的最大深度

Leetcode_easy628. Maximum Product of Three Numbers

LeetCode 628. 三个数的最大乘积

leetcode 637 python3 76ms 二叉树的层平均值