import math import random from utils import * def get_random_string(n: int) -> str: """Generate random bit string""" return bin(random.getrandbits(n)).lstrip("0b").zfill(n) def main() -> None: N_RUNS = 100 # the number of runs N_BITS = 1000 # the number of bits to generate # TODO: implement and run the multiple times (e.g., 100) the # statistical tests if __name__ == "__main__": main()