Frédéric G. MARAND 4e4cceda39 02 Reverse string with multibyte support added. | 9 meses atrás | |
---|---|---|
.. | ||
.exercism | 9 meses atrás | |
HELP.md | 9 meses atrás | |
README.md | 9 meses atrás | |
ReverseString.php | 9 meses atrás | |
ReverseStringTest.php | 9 meses atrás |
Welcome to Reverse String on Exercism's PHP Track.
If you need help running the tests or submitting your code, check out HELP.md
.
Reversing strings (reading them from right to left, rather than from left to right) is a surprisingly common task in programming.
For example, in bioinformatics, reversing the sequence of DNA or RNA strings is often important for various analyses, such as finding complementary strands or identifying palindromic sequences that have biological significance.
Your task is to reverse a given string.
Some examples:
"stressed"
into "desserts"
."strops"
into "sports"
."racecar"
into "racecar"
.Introductory challenge to reverse an input string - https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb