Sha256: 897469b7baa56b3b2dec525f7a91085ecf4af7d9097fa75aa7adf2983ffff827

Contents?: true

Size: 499 Bytes

Versions: 154

Compression:

Stored size: 499 Bytes

Contents

fun toRna dna =
  let
    fun translate #"G" = SOME #"C"
      | translate #"C" = SOME #"G"
      | translate #"T" = SOME #"A"
      | translate #"A" = SOME #"U"
      | translate _    = NONE

    fun reducer (_, NONE)     = NONE
      | reducer (x, SOME acc) = 
          let
            val t = translate x
          in
            case t of
              NONE => NONE
            | SOME c => SOME (c :: acc)
          end
  in
    Option.map implode (foldr reducer (SOME []) (explode dna))
  end

Version data entries

154 entries across 154 versions & 1 rubygems

Version Path
trackler-2.2.1.98 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.97 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.96 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.95 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.94 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.93 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.92 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.91 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.90 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.89 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.88 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.87 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.86 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.85 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.84 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.83 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.82 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.81 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.80 tracks/sml/exercises/rna-transcription/example.sml
trackler-2.2.1.79 tracks/sml/exercises/rna-transcription/example.sml