I think it was “What is the crook going after?” but don’t remember if that was the exact wording P:
👁👁 damn almost 19 years old and i never learned how to read,, i’m one step closer to becoming jared
I think it was “What is the crook going after?” but don’t remember if that was the exact wording P:
Yeah, that's pretty much what happened during the events of Q#2.For those who said that you assumed the painting had already been stolen and that’s why the frame was empty in Question 2, I think that Big Top was in Redd’s hideout. In the full decoded message, Big Top tells Rocket that he’s snuck into Redd’s hideout and that is where he finds the empty frame. (From my memory- i could be totally wrong, i threw out the paper i did this on!)
Your answer was submitted incorrectly due to not filling out the "Text Entry" and "Round #" fields. Our system was unable to detect your answer without these fields filled in. I have manually accepted it now.Hi staff! I answered code number two correctly (I thought I was losing my mind thinking it was wrong) but it never got accepted
View attachment 318292
Edit: photo added
Thank you so much! Sorry for the mistake.Your answer was submitted incorrectly due to not filling out the "Text Entry" and "Round #" fields. Our system was unable to detect your answer without these fields filled in. I have manually accepted it now.
### open da file and tear text apart ###
with open("hoodwinked_r3") as textfile:
text = textfile.read().split("\n")
iP = 0
for paragraph in text:
text[iP] = list(paragraph)
iP +=1
### open key and make it a dict ###
with open("hoodwinked_key") as keyfile:
splitkey = keyfile.read().split("\n")
cipherkey = {}
for pair in splitkey:
if pair != "":
encoded, decoded = pair.split(" ")
cipherkey[encoded] = decoded
### d e c i p h e r i n g ###
iP = 0 # index of paragraph
iC = 0 # index of character
for paragraph in text:
for char in paragraph:
if char in cipherkey.keys():
text[iP][iC] = cipherkey[char]
iC +=1
iC = 0
iP +=1
### stick it back together with hot glue ###
finaltext = ""
for paragraph in text:
finalparag = "".join(paragraph)
finaltext += finalparag + "\n"
print(finaltext)
That is the way I am remembering it too. The empty frame labeled 'flowery painting' was in Redd's hideout, so he was planning to steal the flowery painting from the museum to put in his empty frame.For those who said that you assumed the painting had already been stolen and that’s why the frame was empty in Question 2, I think that Big Top was in Redd’s hideout. In the full decoded message, Big Top tells Rocket that he’s snuck into Redd’s hideout and that is where he finds the empty frame. (From my memory- i could be totally wrong, i threw out the paper i did this on!)
That is the way I am remembering it too. The empty frame labeled 'flowery painting' was in Redd's hideout, so he was planning to steal the flowery painting from the museum to put in his empty frame.
Ohhh that makes so much sense, I interpreted it as the empty frame was in the museum as if he already took the Flowery PaintingThat is the way I am remembering it too. The empty frame labeled 'flowery painting' was in Redd's hideout, so he was planning to steal the flowery painting from the museum to put in his empty frame.
I think because they spoke about real and counterfeit paintings I knew they were in Redd’s boat. Blathers doesn’t take counterfeits after all!that makes so much more sense now. I thought the empty frame was in the museum because it doesn’t say in the message where it is. I feel stupid for not realizing they were on Redd’s boat. This is the decoded message from my notes.
I have eyes on your position. What is going on in there?
We have found a lot of strange artwork.
What do you mean?
Some of it is real but the rest is counterfeit
But the weirdest thing is an empty frame labelled flowery painting.
What do you think it means?
He’s going to raid the museum! On my way to tell blathers, vroom!
Wait how did you guys crack 2 and 3 codes? Can’t find the solutions 0-0