Sha256: b93e484573db2032ea13fc4b7363c4168dd9d9d2d69588e2c9591596c7d35800
Contents?: true
Size: 378 Bytes
Versions: 327
Compression:
Stored size: 378 Bytes
Contents
defmodule RailFenceCipher do @doc """ Encode a given plaintext to the corresponding rail fence ciphertext """ @spec encode(String.t, pos_integer) :: String.t def encode(str, rails) do end @doc """ Decode a given rail fence ciphertext to the corresponding plaintext """ @spec decode(String.t, pos_integer) :: String.t def decode(str, rails) do end end
Version data entries
327 entries across 327 versions & 1 rubygems