numpy combinations of 5 bits

Solutions on MaxInterview for numpy combinations of 5 bits by the best coders in the world

showing results for - "numpy combinations of 5 bits"
Luis
23 Mar 2020
1import itertools
2lst = list(itertools.product([0, 1], repeat=3))