Difference between revisions of "Haskell Quiz/Maximum Sub-Array"

From HaskellWiki
Jump to navigation Jump to search
(created page)
 
Line 10: Line 10:
   
 
* [[Haskell Quiz/Maximum Sub-Array/Solution Kristof|Kristof Bastiaensen]]
 
* [[Haskell Quiz/Maximum Sub-Array/Solution Kristof|Kristof Bastiaensen]]
  +
* [[Haskell Quiz/Maximum Sub-Array/Solution Ninju|Alex Watt]]

Revision as of 23:10, 10 August 2008


Given a list of integers, the aim of this quiz is to find the sublist (sub-array in Ruby) with the maximum sum.

The Problem

Solutions