Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 304 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 304 Bytes

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']