+ 14
[challenge] 💻 👨💻 decode random encoding👨💻 👨💻
Choose your own clear text which is about 10 lines. Let the program encode the text by "shaking the alphabet". It means each character is assigned to another one. (Accidently the same may occur) Try to decode using letter frequency. https://en.wikipedia.org/wiki/Letter_frequency#Relative_frequencies_of_letters_in_the_English_language. You will see - the result is terrible! Now use the frequency of the clear text. you come back to original text? Have fun all languages are welcome
11 Respuestas
+ 4
just for fun
https://code.sololearn.com/chG6ep0LPiKM/?ref=app
+ 11
@louis yes... but no Cesar please (-:
+ 8
I did it with the frequency of the clear text as general frequency.
if all frequencies are different, the text should be the same after coding/decoding.
But fortunately it is not the case and the text is a bit different.
https://code.sololearn.com/cE03cg8a7rhc
+ 8
@Pranta cool! it works!
+ 7
Substitution Cipher
+ 7
I learnt about this, but you must have a large paragraph size, else the method is unreliable
+ 7
I edited the challenge a bit.
It is more exciting this way.
+ 3
Okay I will try
+ 3
Very Basic Cipher
(Bugs Reporting Appreciated)
https://code.sololearn.com/W5qoSqFdBMs9/?ref=app
+ 3
@Batman thanks👍
+ 2
@pegasus
i see you updated