Просмотр исходного кода

Rna-transcription: add starter implementation

Complete started implementation added as this is currently the second
exercise in the new ordering.

See issue #178
Frida Johanne Tveit 9 лет назад
Родитель
Сommit
17302fdd19

+ 0
- 0
exercises/rna-transcription/src/main/java/.keep Просмотреть файл


+ 3
- 0
exercises/rna-transcription/src/main/java/RnaTranscription.java Просмотреть файл

@@ -0,0 +1,3 @@
1
+public class RnaTranscription {
2
+    public String ofDna(String dnaString) { return null; }
3
+}