Maximum Subsequence Multiplication
摘要:
Given an array a contains integers, returnthe maximum consecutive multiplication Example:int[] a = {2, -2, -3, 4, -5, 6} ;return 360 (-3 * 4 * -5 * 6)code[代码] 阅读全文
posted @ 2009-06-10 16:02 翰墨小生 阅读(453) 评论(0) 推荐(0) 编辑