DNA Storage
For encoding an even-length binary string into a sequence of `A`, `T`, `C`, and `G`, we iterate from **left to right** and replace the characters as follows: - `00` is replaced with `A` - `01` is replaced with `T` - `10` is replaced with `C` - `11` is replaced with `G` Given a binary string $S$ of length $N$ ($N$ is even), find the encoded sequence. ### Input - First line will contain $T$, numbe
HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17
CodeSearch Tutor
Hints, not spoilers — it won’t hand over the full solution unless you insist.
Sign in to chat with the tutor and save your progress.
Sign in to start