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.1.0.39 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.38 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.37 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.36 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.34 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.33 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.32 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.31 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.30 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.29 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.28 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.27 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.26 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.25 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.24 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.23 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.22 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.21 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.20 tracks/go/exercises/rna-transcription/example.go
trackler-2.1.0.19 tracks/go/exercises/rna-transcription/example.go