摘要: /** * Find the contiguous subarray within an array (containing at least one number) * which has the largest sum. For example, given the array [-2,1,-3,4,-1,2,1,-5,4], the contiguous subarray [4,... 阅读全文
posted @ 2017-07-04 18:01 stAr_1 阅读(219) 评论(0) 推荐(0) 编辑
摘要: import java.util.Arrays; /** * You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do this in-place? 翻转二维数组,思路是把数组分成length... 阅读全文
posted @ 2017-07-04 17:21 stAr_1 阅读(208) 评论(0) 推荐(0) 编辑