Personal tools

Haskell Quiz/The Solitaire Cipher

From HaskellWiki

< Haskell Quiz(Difference between revisions)
Jump to: navigation, search
Current revision (22:13, 14 December 2009) (edit) (undo)
 
(17 intermediate revisions not shown.)
Line 1: Line 1:
-
The first puzzle of the rubyquizz series was to implement the Solitaire cipher [http://en.wikipedia.org/wiki/Solitaire_(cipher)] Bruce Schneier made for Neil Stephenson's Cryptonomicon [http://en.wikipedia.org/wiki/Cryptonomicon]. The twist is that it's designed to be done by a Spy in a containment camp with no other tools than a deck of bridge cards.
+
The first puzzle of the rubyquiz series was to implement the Solitaire cipher [http://en.wikipedia.org/wiki/Solitaire_(cipher)] Bruce Schneier made for Neil Stephenson's Cryptonomicon [http://en.wikipedia.org/wiki/Cryptonomicon]. The twist is that it's designed to be done by a Spy in a containment camp with no other tools than a deck of bridge cards.
-
<b>The problem:</b>
+
When creating a page, be sure to categorise it as code, with a <nowiki>[[Category:Haskell Quiz]]</nowiki> tag.
 +
 
 +
==The problem==
* http://www.rubyquiz.com/quiz1.html
* http://www.rubyquiz.com/quiz1.html
* http://www.schneier.com/solitaire.html
* http://www.schneier.com/solitaire.html
-
<b>Solutions:</b>
+
==Solutions==
 +
 
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Dolio|Dan Doel]]
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Matthias|Matthias]] (incomplete, but stream generation works)
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Paul|Paul]] ([http://mult.ifario.us/articles/2006/10/25/solitaire-cipher-in-haskell accompanying narrative])
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Burton|Jim]]
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Igloo|Igloo]]
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution JFoutz|JFoutz]]
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Thiago Arrais|Thiago Arrais]]
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Stoltze|Simon Stoltze]]
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Tirpen|Tirpen]]
 +
* [[Haskell Quiz/The Solitaire Cipher/Solution Mike McClurg|Mike McClurg]]
-
* [[Haskell Quiz/The Solitaire Cipher/Solution Don|Don]]
+
[[Category:Haskell Quiz|Solitaire Cipher]]
-
* [[Haskell Quiz/The Solitaire Cipher/Solution Matthias|Matthias]]
+

Current revision

The first puzzle of the rubyquiz series was to implement the Solitaire cipher [1] Bruce Schneier made for Neil Stephenson's Cryptonomicon [2]. The twist is that it's designed to be done by a Spy in a containment camp with no other tools than a deck of bridge cards.

When creating a page, be sure to categorise it as code, with a [[Category:Haskell Quiz]] tag.

1 The problem

2 Solutions