Kotlin - Completed Series and Rotational Cipher

This commit is contained in:
Anthony C 2017-08-01 15:49:10 -04:00
parent 5267c1fd88
commit 093878f065
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,23 @@
class RotationalCipher(val cipher: Int) {
fun encode(inpString: String): String {
return inpString.map { it.encode(cipher) }.joinToString(separator = "")
}
}
fun Char.encode(amount: Int): Char{
if (this.isUpperCase()){
val temp = this + amount
if (!temp.isUpperCase()){
return temp - 26
}
else return temp
}
else if (this.isLowerCase()){
val temp = this + amount
if (!temp.isLowerCase()){
return temp - 26
}
else return temp
}
else {return this}
}

View file

@ -0,0 +1,16 @@
class Series {
companion object {
fun slices(length: Int, inpString: String): List<List<Int>>{
val returnList = mutableListOf<MutableList<Int>>()
for (i in 0..inpString.length-length){
val tempList = mutableListOf<Int>()
for (j in i..i+length - 1){
tempList.add(inpString[j].toInt() - 48)
}
returnList.add(tempList)
}
return returnList
}
}
}