An open API service indexing awesome lists of open source software.

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

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.