Tracks
/
Crystal
Crystal
/
Exercises
/
Reverse String
Reverse String

Reverse String

Easy

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".

An optional test has been added that tests for possible letters to be any unicode character, not just ASCII alphabetic ones. These are not accessible from the web editor, but are run by default when executed locally.

To disable these tests, when calling the test command (crystal spec), add the following flag: --tag "~optional"

Edit via GitHub The link opens in a new window or tab
Crystal Exercism

Ready to start Reverse String?

Sign up to Exercism to learn and master Crystal with 26 concepts, 133 exercises, and real human mentoring, all for free.

Deep Dive into Reverse String!

Explore 14 different ways to reverse a string, exploring a range of topics including Unicode Codepoints, Graphemes, Stack vs Heap allocations, and pointers. Kick back and enjoy 45mins of learning with Jeremy and Erik.