Difference between revisions of "H-99: Ninety-Nine Haskell Problems"

From HaskellWiki
Jump to navigation Jump to search
m (added reference to Ocaml solutions)
(2 intermediate revisions by one other user not shown)
Line 27: Line 27:
 
== Solutions ==
 
== Solutions ==
   
Known solutions are listed at [[99 questions/Solutions]]. We still lack Haskell solutions to problems 80-89 and 94. Please update this page if you find solutions to these. Some of those we have could do with cleaning up or additional solutions.
+
Known solutions are listed at [[99 questions/Solutions]]. We still lack Haskell solutions to problems 80,82,83,85,86 and 94. Please update this page if you find solutions to these. Some of those we have could do with cleaning up or additional solutions.
 
   
 
== References ==
 
== References ==
Line 35: Line 34:
 
* [http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html L-99: Ninety-Nine Lisp Problems] contains Lisp solutions to problems 1-11, 14, 15, 17 and 20-28.
 
* [http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html L-99: Ninety-Nine Lisp Problems] contains Lisp solutions to problems 1-11, 14, 15, 17 and 20-28.
 
* [http://www.oreillynet.com/onlamp/blog/2006/12/99_problems_in_perl_6.html 99 Problems in Perl 6] has an increasing number of Perl 6 solutions (running on [http://www.pugscode.org/ Pugs]).
 
* [http://www.oreillynet.com/onlamp/blog/2006/12/99_problems_in_perl_6.html 99 Problems in Perl 6] has an increasing number of Perl 6 solutions (running on [http://www.pugscode.org/ Pugs]).
  +
* [http://www.christiankissig.de/cms/index.php/en/programming/28-ocaml/28-99-problems-in-ocaml 99 Problems in OCaml] contains Ocaml solutions to many problems.
 
   
 
[[Category:Tutorials]]
 
[[Category:Tutorials]]

Revision as of 11:17, 27 March 2011


These are Haskell translations of Ninety-Nine Lisp Problems, which are themselves translations of Ninety-Nine Prolog Problems.

If you want to work on one of these, put your name in the block so we know someone's working on it. Then, change n in your block to the appropriate problem number, and fill in the <Problem description>,<example in Haskell>,<solution in haskell> and <description of implementation> fields. Then be sure to update the status on this page to indicate that we have a solution!

The problems

These problems have been split into 11 parts, for ease of access.

(Though the problems number from 1 to 99, there are some gaps and some additions marked with letters. There are actually only 88 problems.)


Solutions

Known solutions are listed at 99 questions/Solutions. We still lack Haskell solutions to problems 80,82,83,85,86 and 94. Please update this page if you find solutions to these. Some of those we have could do with cleaning up or additional solutions.

References