This commit is contained in:
ThomasV 2011-11-08 15:04:33 +01:00
parent 93c27a62d4
commit 85d1d5923f
1 changed files with 4 additions and 5 deletions

View File

@ -1919,7 +1919,6 @@ words = [
n = 1626
print len(words)
# Note about US patent no 5892470: Here each word does not represent a given digit.
# Instead, the digit represented by a word is variable, it depends on the previous word.
@ -1947,13 +1946,13 @@ def mn_decode( wlist ):
return out
key = '6a8657c1f2566290be460fd51bb9f7fc'
if __name__ == '__main__':
import sys
a = key
ss = mn_encode(a)
print a
key = '6a8657c1f2566290be460fd51bb9f7fc'
ss = mn_encode(key)
print key
print ss
print mn_decode(ss)