Difference between revisions of "Haskell Quiz/Countdown"

From HaskellWiki
Jump to navigation Jump to search
(creation)
 
(added Graham Huttons JFP paper to the solutions)
Line 7: Line 7:
 
==Solutions==
 
==Solutions==
   
  +
* [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]]

Revision as of 14:03, 30 November 2006

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