Go: Atbash Cipher README.md

Hi.

The Go Atbash Cipher exercise has a mistake in the README.md in the examples

Encoding x123 yes gives c123b vh should be Encoding x123 yes gives c123 bvh
The space after the 123 was missing and after the 123b instead.

I can make a PR to fix this, but experienced last time, that It needs to be addressed here first. :)

Have a nice day.

1 Like

Encoding x123 yes gives c123b vh should be Encoding x123 yes gives c123 bvh

Are you sure about that?

From the instructions: “Ciphertext is written out in groups of fixed length, the traditional group size being 5 letters”

Will have to check again. I’ll add the test case when done with the exercise, then I can see if it’s right or wrong… Or my implementation is wrong ;)

You’re right. I didn’t read the text well enough.