摘要: 描述:实现1 -- 求所有可能的值,O(N^2),超时了(因为超时没有跑所有的测试用例,所以不确定还有没有其他问题)代码: 1 def maxArea(self, height): 2 tmp = len(height) 3 if tmp == 0 or tm... 阅读全文
posted @ 2014-08-21 14:37 mess4u 阅读(185) 评论(0) 推荐(0)