Sha256: 400aa495c79803b802d23b540e0d65dcb2d3d7073fec5631cee2a6f8ad9fcde1
Contents?: true
Size: 384 Bytes
Versions: 69
Compression:
Stored size: 384 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
69 entries across 69 versions & 1 rubygems