
[LeetCode] 2873. Maximum Value of an Ordered Triplet I (Python)

·
알고리즘/LeetCode
난이도: EasyProblem DescriptionYou are given a 0-indexed integer array nums. Return the maximum value over all triplets of indices (i, j, k) such that i . If all such triplets have a negative value, return 0. The value of a triplet of indices (i, j, k) is equal to (nums[i] - nums[j]) * nums[k]. Problem ExampleExample 1:Input: nums = [12,6,1,2,7]Output: 77Explanation: The value of the triplet (0, 2,..