From 093878f065121268b967978e0aecf028d820c6b3 Mon Sep 17 00:00:00 2001 From: Anthony C Date: Tue, 1 Aug 2017 15:49:10 -0400 Subject: [PATCH] Kotlin - Completed Series and Rotational Cipher --- .../src/main/kotlin/RotationalCipher.kt | 23 +++++++++++++++++++ kotlin/series/src/main/kotlin/Series.kt | 16 +++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 kotlin/rotational-cipher/src/main/kotlin/RotationalCipher.kt create mode 100644 kotlin/series/src/main/kotlin/Series.kt diff --git a/kotlin/rotational-cipher/src/main/kotlin/RotationalCipher.kt b/kotlin/rotational-cipher/src/main/kotlin/RotationalCipher.kt new file mode 100644 index 0000000..afac11b --- /dev/null +++ b/kotlin/rotational-cipher/src/main/kotlin/RotationalCipher.kt @@ -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} +} \ No newline at end of file diff --git a/kotlin/series/src/main/kotlin/Series.kt b/kotlin/series/src/main/kotlin/Series.kt new file mode 100644 index 0000000..65ad3f5 --- /dev/null +++ b/kotlin/series/src/main/kotlin/Series.kt @@ -0,0 +1,16 @@ +class Series { + companion object { + fun slices(length: Int, inpString: String): List>{ + val returnList = mutableListOf>() + for (i in 0..inpString.length-length){ + val tempList = mutableListOf() + for (j in i..i+length - 1){ + tempList.add(inpString[j].toInt() - 48) + } + returnList.add(tempList) + } + + return returnList + } + } +} \ No newline at end of file