摘要:
For each position, use A[i] to record the max value of A[j] + j, which j 阅读全文
摘要:
```java class Solution { public boolean canThreePartsEqualSum(int[] A) { int sum = 0; for (int i = 0; i 阅读全文