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

 

相关文章:

  • 2021-11-13
  • 2021-12-16
  • 2022-01-27
  • 2022-02-14
  • 2021-11-12
  • 2022-12-23
  • 2021-11-25
猜你喜欢
  • 2021-06-07
  • 2021-12-01
  • 2021-11-27
  • 2021-06-26
  • 2021-09-02
相关资源
相似解决方案