Category: General Skills, 50 points
Can you convert the number 42 (base 10) to binary (base 2)?
With a little python magic:
$ python -c 'print(bin(42)}")'
We need to get rid of the 0b
prefix returned by the convention this command
and wrap the value with the usual picoCTF{ }
.
picoCTF{101010}