For a given strand of DNA represented as a string, return the reverse of the strand, also as a string.
The DNA strand will contain only cytosine, guanine, thymine, and adenine, represented by the characters 'c', 'g', 't', and 'a', respectively.
dna will contain at most 50 characters.
dna will be one of 'a', 'g', 't', 'c',
all lower-case.
"aaggttcc" Returns: "ccttggaa"
"atgta" Returns: "atgta"If the string is a palindrome, it's reverse is also a palindrome.
"ccggttaat" Returns: "taattggcc"
"t" Returns: "t"
