Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cvigueras/vowels-to-special-character-kata

Vowels to special character Kata.
https://github.com/cvigueras/vowels-to-special-character-kata

csharp csharp-code tdd tdd-kata

Last synced: 18 days ago
JSON representation

Vowels to special character Kata.

Awesome Lists containing this project

README

        

# Replace the vowels, a-e-i-o-u-A-E-I-O-U for the following character:

* a-A ==> 4
* e-E ==> 3
* i-I ==> 1
* o-O ==> 0
* u-U ==> 2

# Examples:

* Replace "Hi!" === "H1!"
* Replace "!Oh!" === "!0h!"
* Replace "aeiou" === "43102"
* Replace "ABCDE" === "4BCD3"
* Replace "about" === "4b02t"