题目
1464. Maximum Product of Two Elements in an Array
解题方法
先降序排序,然后选择前两个数相乘。
时间复杂度:O(nlogn)
空间复杂度:O(1)
代码
class Solution:
def maxProduct(self, nums: List[int]) -> int:
nums.sort(reverse=True)
return (nums[0] - 1) * (nums[1] - 1)