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.2.1.36 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.35 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.34 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.33 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.32 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.31 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.30 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.29 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.28 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.27 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.26 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.25 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.24 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.23 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.22 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.21 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.20 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.19 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.18 tracks/go/exercises/rna-transcription/example.go
trackler-2.2.1.17 tracks/go/exercises/rna-transcription/example.go