Haskell Quiz/Countdown: Difference between revisions

From HaskellWiki
Ulfn (talk | contribs)
added Graham Huttons JFP paper to the solutions
Quale (talk | contribs)
+cat
 
Line 9: Line 9:
* [http://www.cs.nott.ac.uk/~gmh/bib.html#countdown Graham Hutton] (JFP paper)
* [http://www.cs.nott.ac.uk/~gmh/bib.html#countdown Graham Hutton] (JFP paper)
* [[Haskell Quiz/Countdown/Solution Dolio|Dan Doel]]
* [[Haskell Quiz/Countdown/Solution Dolio|Dan Doel]]
[[Category:Haskell Quiz|Countdown]]

Latest revision as of 10:20, 13 January 2007

This question was based on a UK game show. Given a target number, a set of source numbers which may be used at most once, and the 4 basic arithmetic operators (+, -, *, /), construct the whole number closest to the target.

The Problem

Solutions