aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md1
-rw-r--r--lc4.py1
2 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 284f39e..1d24595 100644
--- a/README.md
+++ b/README.md
@@ -70,7 +70,6 @@ mapped to playing cards, similar to the Solitaire cipher [2]. Using playing
cards could be more innocuous and easily explainable to the secret police than
a set of peculiar numbered tiles.
-
```
0 a b c d e f
g h i j k l m
diff --git a/lc4.py b/lc4.py
index 4a17c93..5a2785f 100644
--- a/lc4.py
+++ b/lc4.py
@@ -59,6 +59,7 @@ letters6card = "#abcdefghijklmnopqrstuvwxyz_23456789"
letters7 = "_abcdefghijklmnopqrstuvwxyz.0123456789,-+*/:?!'()"
letters7card = "0abcdefghijklmnopqrstuvwxyz_.,-+*/:?!'()123456789"
+
def missing_letters(s,t):
return ''.join(sorted(set(c for c in s if c not in t)))