Sha256: abc10235563ed790c36ed4e57db4cf23e5abc17862d8036fb8cab898e58e19c1

Contents?: true

Size: 174 Bytes

Versions: 151

Compression:

Stored size: 174 Bytes

Contents

open Core

type dna = [ `A | `C | `G | `T ]
type rna = [ `A | `C | `G | `U ]

let to_rna = List.map ~f:(function
    | `A -> `U
    | `C -> `G
    | `G -> `C
    | `T -> `A)

Version data entries

151 entries across 151 versions & 1 rubygems

Version Path
trackler-2.1.0.32 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.31 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.30 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.29 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.28 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.27 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.26 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.25 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.24 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.23 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.22 tracks/ocaml/exercises/rna-transcription/example.ml