From 278f44370db5878b7118fd7dd9d74207aba2daca Mon Sep 17 00:00:00 2001 From: Tlekbai Ali Date: Mon, 25 Nov 2019 17:58:29 +0600 Subject: [PATCH] Clarify rot14 (#341) * Clarify rot14 On exam not all students faced rot13 before. --- subjects/rot14.en.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/subjects/rot14.en.md b/subjects/rot14.en.md index a3191477..3a369444 100644 --- a/subjects/rot14.en.md +++ b/subjects/rot14.en.md @@ -2,9 +2,7 @@ ### Instructions -Write a function `rot14` that returns the `string` within the parameter transformed into a `rot14 string`. - -- There is the need to know what `rot13` stands for. +Write a function `rot14` that returns the `string` within the parameter transformed into a `rot14 string`, that replaces a letter with the 14th letter after it, in the alphabet. ### Expected function