Sha256: f898a07d4d05f799c107e328ca05d9f7afcb37084fa067260aa47e83270b9617

Contents?: true

Size: 311 Bytes

Versions: 66

Compression:

Stored size: 311 Bytes

Contents

module NucleotideCount exposing (nucleotideCounts, version)


version : Int
version =
    2


type alias NucleotideCounts =
    { a : Int
    , t : Int
    , c : Int
    , g : Int
    }


nucleotideCounts : String -> NucleotideCounts
nucleotideCounts sequence =
    Debug.crash "Please implement this function"

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/elm/exercises/nucleotide-count/NucleotideCount.elm
trackler-2.2.1.118 tracks/elm/exercises/nucleotide-count/NucleotideCount.elm
trackler-2.2.1.117 tracks/elm/exercises/nucleotide-count/NucleotideCount.elm
trackler-2.2.1.116 tracks/elm/exercises/nucleotide-count/NucleotideCount.elm
trackler-2.2.1.115 tracks/elm/exercises/nucleotide-count/NucleotideCount.elm
trackler-2.2.1.114 tracks/elm/exercises/nucleotide-count/NucleotideCount.elm