mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
12 lines
209 B
Kotlin
12 lines
209 B
Kotlin
|
package dna
|
||
|
|
||
|
fun makeComplement(dna : String) : String = dna.map { it ->
|
||
|
when (it) {
|
||
|
'A' -> 'T'
|
||
|
'T' -> 'A'
|
||
|
'C' -> 'G'
|
||
|
'G' -> 'C'
|
||
|
else -> it
|
||
|
}
|
||
|
}.joinToString("")
|