From 8225e5f644e8ae12fda1e408de9827c5afa9c697 Mon Sep 17 00:00:00 2001 From: Neil Smith Date: Tue, 19 Nov 2013 07:36:13 +0000 Subject: [PATCH] Added Mona Lisa specific dictionary --- 2013/mona-lisa-words.txt | 23 +++++++++++++++++++++++ 2013/solutions.txt | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 2013/mona-lisa-words.txt diff --git a/2013/mona-lisa-words.txt b/2013/mona-lisa-words.txt new file mode 100644 index 0000000..0ce029c --- /dev/null +++ b/2013/mona-lisa-words.txt @@ -0,0 +1,23 @@ +samothrace +paume +musees +musee +valenay +jeu +montal +montauban +louvigny +abbaye +curated +jaujard +jahan +loc +albinguillot +dieu +reinstallation +koblenz +fonkenell +vaux +laure +guillaume +chambord diff --git a/2013/solutions.txt b/2013/solutions.txt index c2b8c33..434832b 100644 --- a/2013/solutions.txt +++ b/2013/solutions.txt @@ -3,6 +3,8 @@ 2a: affine_decipher(c2a, 3, 3, True) 2b: caesar_decipher(c2b, 6) 3a: affine_decipher(c3a, 7, 8, True) +# with open('2013/mona-lisa-words.txt') as f: mona_lisa_words = [line.rstrip() for line in f] +# keyword_break(c4a, wordlist=mona_lisa_words) 3b: keyword_decipher(c3b, 'louvigny', 2) 4a: keyword_decipher(c4a, 'montal', 2) 4b: keyword_decipher(c4b, 'salvation', 2) -- 2.34.1