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.2.1.10 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.9 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.8 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.7 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.6 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.5 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.4 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.3 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.2 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.1 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.0 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.0.6 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.0.5 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.0.4 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.0.3 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.0.2 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.0.1 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.0.0 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.55 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.54 tracks/ocaml/exercises/rna-transcription/example.ml