/all-bitstrings

A NumPy function returning all bitstrings of a given size.

Primary LanguagePython

all-bitstrings

Two functions using NumPy to compute all bit strings of a given size.

Notice the difference in compute time:

%timeit all_bitstrings(10)
# gives: 94.9 µs ± 491 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each)

%timeit all_bitstrings_slow(10)
# gives: 3.03 ms ± 51.2 µs per loop (mean ± std. dev. of 7 runs, 100 loops each)