problem
solution
option 1 - prefix sum
最小區間只會存在於兩個是數字或是三個數字,因為如果有超過3個數字,代表還可以在拆分
1 | // you can use includes, for example: |
option 2 - 最小區間只會存在於兩個是數字或是三個數字,因為如果有超過3個數字,代表還可以在拆分
1 | // you can use includes, for example: |
analysis
- time complexity
O(n)
- space complexity
O(1)