diff options
| author | Trevor Xiao <tterris@redhat.com> | 2021-04-22 02:50:08 +0200 |
|---|---|---|
| committer | Trevor Xiao <tterris@redhat.com> | 2021-04-22 02:50:08 +0200 |
| commit | 00f89c47c7963c8873bee38a1d003d1cec443c5c (patch) | |
| tree | 8eb926ebd9bd124431fe2f48602870416dfce02f | |
| parent | 513f8312a22db2ae1e194e633a41b60dd2b2206a (diff) | |
| download | ls47-00f89c47c7963c8873bee38a1d003d1cec443c5c.tar.gz ls47-00f89c47c7963c8873bee38a1d003d1cec443c5c.tar.bz2 | |
Fix whitespace
| -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))) |
