Skip to content
Snippets Groups Projects
Commit 70e36ad0 authored by Lukáš Krupčík's avatar Lukáš Krupčík
Browse files

fix

parent 7894f638
Branches
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@ for i in your_list:
counts[i[0]]=counts.get(i[0], 0) + int(i[1])
l = ['A', 'S', 'U', 'P', 'N']
c = []
mask = ''.join(reversed(l))
from itertools import product
for bits in product([0, 1], repeat=len(l)):
......
......@@ -31,6 +31,7 @@ for i in your_list:
counts[i[0]]=counts.get(i[0], 0) + int(i[1])
l = ['A', 'S', 'U', 'P', 'N']
c = []
mask = ''.join(reversed(l))
from itertools import product
for bits in product([0, 1], repeat=len(l)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment