Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAwow.. 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
Very fun, interesting, and challenging puzzle this week!
That was a bit of a slog! But made it to the answer 🙂
Challenge 177 is done!
This challenge was... ifficultday. BUT I FIGURED OUT THE PATTERN, HAM HAMLET. So take that.
Eerschay!
NJ
Whew. That one was tough, but fun.