6 kyu
Change it up
1,244 of 2,751aec58
Description:
Create a function that takes a string as a parameter and does the following, in this order:
- Replaces every letter with the letter following it in the alphabet (see note below)
- Makes any vowels capital
- Makes any consonants lower case
Note:
- the alphabet should wrap around, so
Z
becomesA
- in this kata,
y
isn't considered as a vowel.
So, for example the string "Cat30"
would return "dbU30"
(Cat30 --> Dbu30 --> dbU30
)
Strings
Fundamentals
Similar Kata:
Stats:
Created | Oct 16, 2016 |
Published | Oct 16, 2016 |
Warriors Trained | 4022 |
Total Skips | 79 |
Total Code Submissions | 9837 |
Total Times Completed | 2751 |
JavaScript Completions | 1244 |
Ruby Completions | 131 |
Python Completions | 1331 |
Crystal Completions | 13 |
COBOL Completions | 6 |
C Completions | 79 |
Haskell Completions | 16 |
Total Stars | 66 |
% of votes with a positive feedback rating | 94% of 531 |
Total "Very Satisfied" Votes | 474 |
Total "Somewhat Satisfied" Votes | 51 |
Total "Not Satisfied" Votes | 6 |
Total Rank Assessments | 37 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 6 kyu |
Lowest Assessed Rank | 8 kyu |