摘要: 42. 接雨水 class Solution { public int trap(int[] height) { int size = height.length; int[] left = new int[size]; int[] right = new int[size]; for (int i 阅读全文