For this challenge, you must write a script to convert a number 4095 or less into a binary code while trying to use as few blocks as possible. Leaderboards: @uwk - 13 blocks @Geotale - 14 blocks @frogadier63 - 15 blocks @photopolaraccoustic - 21 blocks and 14 blocks Here's how binary works, if you don't know: ex. 19: 2048 1024 512 256 128 64 32 16 8 4 2 1 0 0 0 0 0 0 0 1 0 0 1 1 Since 2048 has a 0, you don't add that to the total. Same with 1024, 512, 256, 128, 64, and 32. But 16 has a one, so so far we have 16. The 8 and 4 are not added, but the 2 and 1 are. We end up with 19. Essentially, each digit (0 or 1) represents a number. The pattern is that the first digit (to the left) represents a one, and the next to the right a two, and so on - a basic exponential increase. So you can make any number less than or equal to 4095, which would be a 1 for every digit (2048+1024+512+256 etc).