Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/cvigueras/vowels-to-special-character-kata
- Owner: cvigueras
- License: mit
- Created: 2023-05-06T14:11:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-27T09:50:35.000Z (over 1 year ago)
- Last Synced: 2024-11-09T21:17:22.272Z (2 months ago)
- Topics: csharp, csharp-code, tdd, tdd-kata
- Language: C#
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"