Haskell Quiz/The Solitaire Cipher: Difference between revisions

From HaskellWiki
(dolio was the author)
m (note how to categorise)
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.
 
When creating a page, be sure to categorise it as code, with a [ [ Category:Code ] ] tag.


==The problem==
==The problem==

Revision as of 07:38, 26 October 2006

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:Code ] ] tag.

The problem

Solutions

(incomplete, but stream generation works)