From 00f89c47c7963c8873bee38a1d003d1cec443c5c Mon Sep 17 00:00:00 2001 From: Trevor Xiao Date: Wed, 21 Apr 2021 20:50:08 -0400 Subject: [PATCH] Fix whitespace --- README.md | 1 - lc4.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) 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)))