diff options
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | lc4.py | 1 |
2 files changed, 1 insertions, 1 deletions
@@ -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 @@ -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))) |
