feat(curriculum): convert DNA pairing challenge to lab (#62132)

Co-authored-by: Ilenia <26656284+ilenia-magoni@users.noreply.github.com>
This commit is contained in:
Zaira
2025-09-22 13:30:25 +05:00
committed by GitHub
parent 2098a0d364
commit 8f4fdeda58
5 changed files with 131 additions and 0 deletions
+6
View File
@@ -3473,6 +3473,12 @@
"In this lab, you will design a sum all numbers algorithm. This algorithm takes an array of two numbers and returns the sum of those two numbers plus the sum of all the numbers between them."
]
},
"lab-dna-pair-generator": {
"title": "Implement a DNA Pair Generator",
"intro": [
"In this lab you will implement a DNA base pairing algorithm that converts a single DNA strand into complementary base pairs."
]
},
"lab-html-entitiy-converter": {
"title": "Implement an HTML Entity Converter",
"intro": [
@@ -0,0 +1,9 @@
---
title: Introduction to the Implement a DNA Pair Generator
block: lab-dna-pair-generator
superBlock: full-stack-developer
---
## Introduction to the Implement a DNA Pair Generator
In this lab you will implement a DNA base pairing algorithm that converts a single DNA strand into complementary base pairs.