This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import log2 | |
from csv import reader | |
from collections import Counter | |
from sys import argv | |
def transpose(xx): | |
return map(list, zip(*xx)) | |