Skip to content

Instantly share code, notes, and snippets.

@mabj
Last active January 12, 2020 23:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mabj/b1f942b25e340e5856ab26467ed1cc96 to your computer and use it in GitHub Desktop.
Save mabj/b1f942b25e340e5856ab26467ed1cc96 to your computer and use it in GitHub Desktop.
compressors = []
for i in range(1,level):
compressors.append(Compressor(i))
for e in data:
e1 = checksum(e)
c = compressors[0]
out = c.add(e1)
for c in compressor[1:]:
out = c.add(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment