diff --git a/Ciphers/RailfenceCipher.php b/Ciphers/RailfenceCipher.php index 5ed4b5fa..f30e71fd 100644 --- a/Ciphers/RailfenceCipher.php +++ b/Ciphers/RailfenceCipher.php @@ -13,7 +13,6 @@ function encode($plainMessage, $rails): string { $cipherMessage = []; $position = ($rails * 2) - 2; - // Iterate through the characters of the plain message for ($index = 0; $index < strlen($plainMessage); $index++) { for ($step = 0; $step < $rails; $step++) {