LeetCode 筆記 - 167. Two Sum II - Input Array Is Sorted
題目在此 167. Two Sum II - Input Array Is Sorted
給一個 Sorting 過的數列,請找出兩個相加等於 target 的 index
解題思維
這題是 Two Pointers 大法的應用
不斷調整夾擠出最終結果
程式碼
1 | class Solution: |
題目在此 167. Two Sum II - Input Array Is Sorted
給一個 Sorting 過的數列,請找出兩個相加等於 target 的 index
這題是 Two Pointers 大法的應用
不斷調整夾擠出最終結果
1 | class Solution: |