1
1
Fork 0
exercism/uiua/reverse-string
Christina Sørensen 027d6e57cc
feat(uiua): helloworld, reverse-string, gigasecond
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-12-15 17:50:28 +01:00
..
.exercism feat(uiua): helloworld, reverse-string, gigasecond 2024-12-15 17:50:28 +01:00
HELP.md feat(uiua): helloworld, reverse-string, gigasecond 2024-12-15 17:50:28 +01:00
README.md feat(uiua): helloworld, reverse-string, gigasecond 2024-12-15 17:50:28 +01:00
reverse-string.ua feat(uiua): helloworld, reverse-string, gigasecond 2024-12-15 17:50:28 +01:00
tests.ua feat(uiua): helloworld, reverse-string, gigasecond 2024-12-15 17:50:28 +01:00

Reverse String

Welcome to Reverse String on Exercism's Uiua Track. If you need help running the tests or submitting your code, check out HELP.md.

Introduction

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.

Instructions

Your task is to reverse a given string.

Some examples:

  • Turn "stressed" into "desserts".
  • Turn "strops" into "sports".
  • Turn "racecar" into "racecar".

Source

Created by

  • @erikschierboom

Based on

Introductory challenge to reverse an input string - https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb