Homework 1.2: Using string methods (10 pts)¶
In the lessons, we wrote a function to compute the reverse complement of a sequence.
a) Write that function again, still using a ``for`` loop, but do not use the built-in reversed()
function.
b) Write the function one more time, but without any loops.