https://github.com/objarni/robberslanguagekata
A kata about translating to (or from) the Robber's language
https://github.com/objarni/robberslanguagekata
Last synced: 4 months ago
JSON representation
A kata about translating to (or from) the Robber's language
- Host: GitHub
- URL: https://github.com/objarni/robberslanguagekata
- Owner: objarni
- License: mit
- Created: 2021-01-19T10:26:49.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-25T09:05:07.000Z (over 5 years ago)
- Last Synced: 2025-07-18T07:43:16.061Z (11 months ago)
- Language: CMake
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Robbers Language
The Robber's language is a simple "encryption" of text by interspersing
the letter o into the text, and repeating some letters:
Given this input: geeks
.. we get this output: gogeekoksos
Notice how consonants, like g, are repeated with an o between, while
vowels, like e, are not.
## Scope variations
# Basic excercise
It can be assumed the input is made up of only small letters and space;
no Capital Letters nor !?
# Medium excercise
The input may contain letters, numbers, symbols and any kind of whitespace,
but the output does not have to keep those.
# Advanced excercise
The input may contain letters, numbers, symbols and any kind of whitespace,
and the output should preserve those characters.