Skip to content
#

code-wars-solution

Here are 22 public repositories matching this topic...

Given a lowercase string that has alphabetic characters only and no spaces, return the highest value of consonant substrings. Consonants are any letters of the alphabet except "aeiou". We shall assign the following values: a = 1, b = 2, c = 3, .... z = 26. For example, for the word "zodiacs", let's cross out the vowels. We get: "z o d ia cs" -- …

  • Updated Jul 6, 2022
  • JavaScript

ROT13 is a simple letter substitution cipher that replaces a letter with the letter 13 letters after it in the alphabet. ROT13 is an example of the Caesar cipher. Create a function that takes a string and returns the string ciphered with Rot13. If there are numbers or special characters included in the string, they should be returned as they are…

  • Updated Jul 6, 2022
  • JavaScript

Improve this page

Add a description, image, and links to the code-wars-solution topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the code-wars-solution topic, visit your repo's landing page and select "manage topics."

Learn more