bits de comptage de python
counts = bytes(bin(x).count("1") for x in range(256)) # py2: use bytearray
wolf-like_hunter
counts = bytes(bin(x).count("1") for x in range(256)) # py2: use bytearray