This function receives as a parameter an integer and should return a list representing the same value expressed in binary as a list of bits, where the first element in the l
Convert integer to list of bits with a fixed length :
[int(x) for x in list('{0:0{width}b}'.format(8, width=5))]