Leetcode 第191場周賽題解

5424. 數組中兩元素的最大乘積 知識點 時間複雜度 暴力枚舉 O(n) 從 1 到 n-1 枚舉,計算 (nums[i]-1)*(nums[i-1]-1) 。並記錄最大值。web class Solution { public: int maxProduct(vector<int>& nums) { int anw = 0; for(int i = 0;
相關文章
相關標籤/搜索