From 1b2b2cb9e8192da01b4026b667e97c1523d426e5 Mon Sep 17 00:00:00 2001 From: "elena.parovyshnaya" Date: Tue, 12 Nov 2019 13:33:10 +0300 Subject: [PATCH] 310 Create stub files for all exercises -- stubs for TwoFer and SecretHadshake --- .../secret-handshake/src/main/kotlin/HandshakeCalculator.kt | 5 +++++ exercises/two-fer/src/main/kotlin/Twofer.kt | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 exercises/secret-handshake/src/main/kotlin/HandshakeCalculator.kt create mode 100644 exercises/two-fer/src/main/kotlin/Twofer.kt diff --git a/exercises/secret-handshake/src/main/kotlin/HandshakeCalculator.kt b/exercises/secret-handshake/src/main/kotlin/HandshakeCalculator.kt new file mode 100644 index 00000000..24e7cf9b --- /dev/null +++ b/exercises/secret-handshake/src/main/kotlin/HandshakeCalculator.kt @@ -0,0 +1,5 @@ +object HandshakeCalculator { + fun calculateHandshake(number: Int): List { + TODO("Implement the function to complete the task") + } +} diff --git a/exercises/two-fer/src/main/kotlin/Twofer.kt b/exercises/two-fer/src/main/kotlin/Twofer.kt new file mode 100644 index 00000000..ab376f29 --- /dev/null +++ b/exercises/two-fer/src/main/kotlin/Twofer.kt @@ -0,0 +1,3 @@ +internal fun twofer(name: String): String { + TODO("Implement the function to complete the task") +}