Blog articles/Exercises
From HaskellWiki
(Difference between revisions)
(→Programming exercises in Haskell) |
(→Norvig's spell checker) |
||
| Line 51: | Line 51: | ||
=== Norvig's spell checker === | === Norvig's spell checker === | ||
* [http://www.serpentine.com/blog/2007/05/14/norvigs-spell-checker-and-idiomatic-haskell/ Norvig's spell checker and idiomatic Haskell] | * [http://www.serpentine.com/blog/2007/05/14/norvigs-spell-checker-and-idiomatic-haskell/ Norvig's spell checker and idiomatic Haskell] | ||
| + | |||
| + | === Chris' Puzzle === | ||
| + | *[http://cdsmith.wordpress.com/2007/07/17/a-neat-problem/ A neat game with a really neat solution: puzzle fun in Haskell] | ||
=== Games === | === Games === | ||
Revision as of 06:14, 18 July 2007
Contents |
1 Programming exercises in Haskell
- Diff in Haskell
- Introductory Haskell: Solving the Sorting-It-Out Kata
- The "perfect shuffles" puzzle (solved in Haskell)
- A Simple RPN Calculator in Haskell
- Software Cipher
- Dot matrix printer
- Overlap function in Haskell for rectangles
- Tying Knots Generically
- A quick and dirty theorem prover in Haskell
- Brainf*k interpreter in Haskell
- FourFours in Haskell
- Using Bayesian filtering instead of 'if' in Haskell
- Counting fibonaccis
- Decision making
- Solving an arithmetic puzzle with Haskell
2 Particular exercises
2.1 Prime sieves
2.2 Supermarket Pricing
2.3 The Google Code Jam "countPaths" problem
2.4 Secret Santas in Haskell
2.5 Run length encoding
2.6 The bowling puzzle
- The Bowling Game Kata in Haskell
- Bowling in Haskell
