Weekly Challenges

Solve the challenge, share your solution and summit the ranks of our Community!

Also available in | Français | Português | Español | 日本語
IDEAS WANTED

Want to get involved? We're always looking for ideas and content for Weekly Challenges.

SUBMIT YOUR IDEA

Challenge #177: Ham Hamlet

Mengdee
8 - Asteroid

wow.. not sure if i was supposed to solve it without manually deducing what each 2 letter character was.. but for me it was a very tedious manual exercise.

 

First step was to brush up on my pig latin (i used this translator https://lingojam.com/PigLatinTranslator)

 

Then

 

1.  i replaced "acqd" (ay) with , and then did a split to rows.  As most rows started with ks i could safely assume this was a space

2. replaced ks with , and then split to rows

3. i then counted the length of chars and did a filter on 8 (which returns 2 and 3 letter words depending on whether there was a yay suffix).  I did a sum and sorted by frequency.  Using google to return a list of most popular 3 and 2 letter words i was able to start decoding letters for (the, for, or, and, if, I, etc, etc)

4. after that i extended out my list to 3 and 4 letter words using the find and replace with known letters.  Slowly decoding in the letters 1 by 1

5. rinse and repeat slowly increasing my length filter to decode new letters

 

ouch!

 

i checked out some solutions and seriously my hats off to some of them, brilliant stuff

 

johnemery
11 - Bolide

Very fun, interesting, and challenging puzzle this week!

 

Spoiler
Like many others, I split each pair or encoded "letters" apart and quickly surmised that "ks" must be a space. I used the frequency tool to see how often each encoded pair showed up.

From there, I used that knowledge to split each encoded string into words and calculated frequencies for the words.

Using the frequencies of letters, frequencies of words, and examining the nature of the letters within the broader structure of the text, I also surmised that "jh" must be a period.

Then, I looked at common, shorter words, which got me "t = 7d" and "h = 8c" and "e = 5c." It took a bit longer for me to determine that the case of the second letter in the encoded string matches with the case of the true letter. Thus, "T = 7D" and so on.

The final hint I stumbled across was the word "anywhere" which gave me "w" and "r" (upper and lower case), which put me over 26 correct and unlocked the decypher table.

It's not an elegant solution, but experience doing cryptoquote puzzles paid off in spades here.

Capture.PNG
JennyMartin
9 - Comet
Spoiler
AWC177.PNG

That was a bit of a slog! But made it to the answer 🙂

JethroChen
10 - Fireball
Spoiler
challenge_177_jc.PNG
Jonathan-Sherman
15 - Aurora
15 - Aurora

Challenge 177 is done!

 

Spoiler
I took a similar approach to others and split into character pairs to summarise, noting that ks was likely a space. Split to rows on "ks" to get each word separately and went down the list of most common English words (https://en.wikipedia.org/wiki/Most_common_words_in_English converted them into Pig Latin) and used regex to find the likely candidate words according to how frequent they were!

challenge 177 JMS solution.PNG
AngelosPachis
16 - Nebula

My solution for challenge #177

TerryT
Alteryx Alumni (Retired)

😊

NicoleJohnson
ACE Emeritus
ACE Emeritus

This challenge was... ifficultday. BUT I FIGURED OUT THE PATTERN, HAM HAMLET. So take that.

 

Spoiler
The key to this one for me was finding the most likely space character first, and then looking for patterns in the smaller 2 & 3 letter words, via trial & error method, to get to enough letters that I could spot the pattern in the cypher. Lots of wrong turns and false positives, but was eventually able to get there! Fun challenge in the end, even if I did periodically yell at it (in both English and pig latin, naturally).

WeeklyChallenge177.JPG

Eerschay!

NJ

AkimasaKajitani
17 - Castor
17 - Castor

My solution.

 

This challenge is very tough.

 

Spoiler
AkimasaKajitani_0-1605409670469.png

 

mpennington
11 - Bolide

Whew. That one was tough, but fun.

 

Spoiler
My method wasn't that different from others.  Figured out with the pig latin that ks had to be a space, then looked for frequency of words and letters, solved for 'the' and 'and,' among others.  After about 10 or 11 letters I got the capitalization clue and my speed picked up. It ran pretty slow, so it wasn't a speedy process.  After completion, I went to a pig latin translator online and figured out, it was the complete works of Shakespeare, which could explain the size. Getting the Find/Replace to play nice with the output from the macro was a bit challenging and for some reason, when I struggled to get caching to work right on this workflow.  I took some screen shots of the iterations and process.  Didn't package the workflow due to the file size. 

MP 177.jpg2021-04-23_11-40-34.png2021-04-23_11-43-45.png2021-04-23_11-45-09.png2021-04-23_11-47-29.png2021-04-23_12-02-40.png2021-04-23_12-09-51.png2021-04-23_12-11-21.png2021-04-23_12-26-39.png