BinaryPermutation Script that calculate all the posible binary combinations with N numbers. Example: Result with 3 variables: ['0', '0', '0'] ['0', '0', '1'] ['0', '1', '0'] ['0', '1', '1'] ['1', '0', '0'] ['1', '0', '1'] ['1', '1', '0'] ['1', '1', '1']