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.0.3 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.0.2 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.0.1 tracks/go/exercises/rna-transcription/example.go
trackler-2.0.0.0 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.4.1 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.4.0 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.3.0 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.2.1 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.2.0 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.1.2 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.1.1 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.1.0 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.0.1 tracks/go/exercises/rna-transcription/example.go
trackler-1.0.0 tracks/go/exercises/rna-transcription/example.go