[LeetCode] Container With Most Water
題目Container With Most Water
難度:Medium
時間複雜度:因要遍歷整個矩陣,故為 O(N)
空間複雜度:因變數只有三個數字,兩個 pointer 及一個當前乘載的水量,故為 O(1)
1 | public class Solution { |
題目Container With Most Water
難度:Medium
時間複雜度:因要遍歷整個矩陣,故為 O(N)
空間複雜度:因變數只有三個數字,兩個 pointer 及一個當前乘載的水量,故為 O(1)
1 | public class Solution { |