Kotlin - Simple Cipher Complete
This commit is contained in:
parent
c70f0c823a
commit
0c4f4e5807
1 changed files with 10 additions and 2 deletions
|
@ -26,7 +26,11 @@ class Cipher() {
|
||||||
val stringBuilder = StringBuilder()
|
val stringBuilder = StringBuilder()
|
||||||
|
|
||||||
for ((index, i) in s.withIndex()){
|
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)
|
return String(stringBuilder)
|
||||||
|
@ -37,7 +41,11 @@ class Cipher() {
|
||||||
val stringBuilder = StringBuilder()
|
val stringBuilder = StringBuilder()
|
||||||
|
|
||||||
for ((index, i) in s.withIndex()){
|
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)
|
return String(stringBuilder)
|
||||||
|
|
Loading…
Add table
Reference in a new issue