Difference between revisions of "Haskell Quiz/The Solitaire Cipher"

From HaskellWiki
Jump to navigation Jump to search
(Added my solution)
(+cat)
Line 1: Line 1:
 
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.
 
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.
   
When creating a page, be sure to categorise it as code, with a [ [ Category:Code ] ] tag.
+
When creating a page, be sure to categorise it as code, with a <nowiki>[[Category:Haskell Quiz]]</nowiki> tag.
   
 
==The problem==
 
==The problem==
Line 15: Line 15:
 
* [[Haskell Quiz/The Solitaire Cipher/Solution Burton|Jim]]
 
* [[Haskell Quiz/The Solitaire Cipher/Solution Burton|Jim]]
 
* [[Haskell Quiz/The Solitaire Cipher/Solution Igloo|Igloo]]
 
* [[Haskell Quiz/The Solitaire Cipher/Solution Igloo|Igloo]]
  +
  +
[[Category:Haskell Quiz]]

Revision as of 10:18, 13 January 2007

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.

The problem

Solutions