Transposition-Trial
Our data got corrupted on the way here. Luckily, nothing got replaced, but every block of 3 got scrambled around!
So we are given the data
And also told that every block of 3 is scrambled the same way. Looking at the first block of 3, is should clearly say The
, so the order of reading it should be 3rd letter -> 1st letter -> 2nd letter. We make a quick python script to split it into triplets and rearrange:
Last updated