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.53 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.52 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.51 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.50 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.49 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.48 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.47 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.46 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.45 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.44 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.43 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.42 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.41 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.40 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.39 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.38 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.37 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.36 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.34 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.1.0.33 tracks/ocaml/exercises/rna-transcription/example.ml