Sha256: d460d4eb691986e20a5002869db4395cea68988a0bff1f5c2dfac467a63392e0

Contents?: true

Size: 288 Bytes

Versions: 274

Compression:

Stored size: 288 Bytes

Contents

package strand

import "strings"

const testVersion = 3

func ToRNA(dna string) string {
	dna = strings.Replace(dna, "A", "u", -1)
	dna = strings.Replace(dna, "T", "a", -1)
	dna = strings.Replace(dna, "C", "g", -1)
	dna = strings.Replace(dna, "G", "c", -1)
	return strings.ToUpper(dna)
}

Version data entries

274 entries across 274 versions & 1 rubygems

Version Path
trackler-2.0.6.38 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.37 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.36 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.35 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.34 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.33 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.32 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.31 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.30 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.29 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.28 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.27 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.26 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.25 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.24 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.23 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.22 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.21 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.20 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.6.19 tracks/go/exercises/rna-transcription/example.go