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.30 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.29 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.28 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.27 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.26 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.25 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.24 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.23 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.22 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.21 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.20 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.19 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.18 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.17 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.16 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.15 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.14 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.13 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.12 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.11 tracks/ocaml/exercises/rna-transcription/example.ml