This article lists the correct answers to my cipher puzzle contest.
I will update this article when each puzzle is solved.
Puzzle 2 - solved by nathanielcwm
"113 117 105 120 111 116 105 99"
The numbers are ASCII characters in decimals. You can solve the puzzle by hand, using a Decimal to ASCII chart or with a decimal to ASCII converter.
Below is the solution and the cipher in python:
print(''.join(chr(int(c)) for c in "113 117 105 120 111 116 105 99".split(' ')))
print(' '.join(str(ord(c)) for c in 'quixotic'))
Puzzle 3 - solved by nathanielcwm
"ZmFsbGFjaW91cw=="
This cipher is in base64 and can be solved with a base64 decoder.
The puzzle and it's solution in python:
print(base64.b64decode('ZmFsbGFjaW91cw=='))
print(base64.b64encode(b'fallacious'))
@aquartarkus, u did a difficult task.
and i follow u and voted u so u should do this.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
So it seems! Let's see if they get solved at all!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @aquatarkus! You have completed the following achievement on Steemit and have been rewarded with new badge(s) :
Award for the number of upvotes
Click on the badge to view your Board of Honor.
If you no longer want to receive notifications, reply to this comment with the word
STOP
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
As the puzzles took longer than 7 days to solve, I cannot edit this post anymore. At the moment, only puzzles 7 and 8 remain.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Still 2 puzzles unsolved! Updated version of the cipher puzzle post can be found here and the solutions to the puzzles through this link.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit