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.110 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.109 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.108 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.107 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.106 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.105 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.104 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.103 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.102 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.101 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.100 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.99 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.98 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.97 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.96 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.95 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.94 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.93 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.92 tracks/ocaml/exercises/rna-transcription/example.ml
trackler-2.2.1.91 tracks/ocaml/exercises/rna-transcription/example.ml