Maximum Subsequence Multiplication

Given an array a contains integers, return
the maximum consecutive multiplication
Example:
int[] a = {2, -2, -3, 4, -5, 6} ;
return 360 (-3 * 4 * -5 * 6)

code

Code

 

posted on 2009-06-10 16:02  前端风云志  阅读(464)  评论(0)    收藏  举报

导航

关注我

前端风云志