标签:col max div solution leetcode lse -- == turn
public class Solution { //public int MaxArea(int[] height) //{ // var max = 0; // for (int i = 0; i < height.Length; i++) // { // for (int j = 0; j < height.Length; j++) // { // if (i == j) // { // continue; // } // var min = Math.Min(height[i], height[j]); // var dif = Math.Abs(i - j); // var product = min * dif; // max = Math.Max(max, product); // } // } // return max; //} public int MaxArea(int[] height) { int max = int.MinValue; for (int i = 0, j = height.Length - 1; i < j;) { if (height[i] > height[j]) { max = Math.Max(max, height[j] * (j - i)); j--; } else { max = Math.Max(max, height[i] * (j - i)); i++; } } return max; } }
标签:col max div solution leetcode lse -- == turn
原文地址:https://www.cnblogs.com/asenyang/p/9743529.html