Sha256: 86fd165bf7227cc9846f86ae14b95724a9e96f56fa46c842c7996e388d0eaeb6

Contents?: true

Size: 377 Bytes

Versions: 327

Compression:

Stored size: 377 Bytes

Contents

defmodule RNATranscription do
  @doc """
  Transcribes a character list representing RNATranscription nucleotides to RNA

  ## Examples

  iex> RNATranscription.to_rna('ACTG')
  'UGAC'
  """
  def to_rna(dna) do
    Enum.map dna, &transcribe(&1)
  end

  defp transcribe(?C), do: ?G
  defp transcribe(?G), do: ?C
  defp transcribe(?A), do: ?U
  defp transcribe(?T), do: ?A
end

Version data entries

327 entries across 327 versions & 1 rubygems

Version Path
trackler-1.0.2.1 tracks/elixir/exercises/rna-transcription/example.exs
trackler-1.0.2.0 tracks/elixir/exercises/rna-transcription/example.exs
trackler-1.0.1.2 tracks/elixir/exercises/rna-transcription/example.exs
trackler-1.0.1.1 tracks/elixir/exercises/rna-transcription/example.exs
trackler-1.0.1.0 tracks/elixir/exercises/rna-transcription/example.exs
trackler-1.0.0.1 tracks/elixir/exercises/rna-transcription/example.exs
trackler-1.0.0 tracks/elixir/exercises/rna-transcription/example.exs