Kotlin - Simple Cipher Complete

This commit is contained in:
Anthony Cicchetti 2017-08-12 15:15:34 -04:00
parent c70f0c823a
commit 0c4f4e5807

View file

@ -26,7 +26,11 @@ class Cipher() {
val stringBuilder = StringBuilder()
for ((index, i) in s.withIndex()){
stringBuilder.append(i + (key[index].toInt() - 'a'.toInt()))
var charToAppend: Char = i + (key[index].toInt() - 'a'.toInt())
if (charToAppend.toInt() > 'z'.toInt()){
charToAppend = charToAppend - 26
}
stringBuilder.append(charToAppend)
}
return String(stringBuilder)
@ -37,7 +41,11 @@ class Cipher() {
val stringBuilder = StringBuilder()
for ((index, i) in s.withIndex()){
stringBuilder.append(i - (key[index].toInt() - 'a'.toInt()))
var charToAppend: Char = i - (key[index].toInt() - 'a'.toInt())
if (charToAppend.toInt() < 'a'.toInt()){
charToAppend = charToAppend + 26
}
stringBuilder.append(charToAppend)
}
return String(stringBuilder)