Challenge 10: 2Warm
Description
Can you convert the number 42 (base 10) to binary (base 2)?
Tags
picoCTF 2019
General Skills
Points
50
Solution
We need to convert the decimal number 42
to binary. We can do this by using the bin()
function in python. We can run the following command:
$ python3 -c "print(bin(42))"
0b101010
Flag
picoCTF{101010}