You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To run the tests, run the command `sbt test` in the exercise's directory.
6
+
See the [tests page](https://exercism.org/docs/tracks/scala/tests) for more information.
7
+
8
+
## Skipped tests
9
+
10
+
Initially, only the first test will be enabled.
11
+
This is to encourage you to solve the exercise one step at a time.
12
+
Once you get the first test passing, remove the `pending` keyword from the beginning of the next test and work on getting that test passing.
13
+
14
+
## Submitting your solution
15
+
16
+
You can submit your solution using the `exercism submit src/main/scala/ReverseString.scala` command.
17
+
This command will upload your solution to the Exercism website and print the solution page's URL.
18
+
19
+
It's possible to submit an incomplete solution which allows you to:
20
+
21
+
- See how others have completed the exercise
22
+
- Request help from a mentor
23
+
24
+
## Need to get help?
25
+
26
+
If you'd like help solving the exercise, check the following pages:
27
+
28
+
- The [Scala track's documentation](https://exercism.org/docs/tracks/scala)
29
+
- The [Scala track's programming category on the forum](https://forum.exercism.org/c/programming/scala)
30
+
-[Exercism's programming category on the forum](https://forum.exercism.org/c/programming/5)
31
+
- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)
32
+
33
+
Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.
34
+
35
+
Please see the [learning](https://exercism.org/docs/tracks/scala/learning) and [installation](https://exercism.org/docs/tracks/scala/installation) pages if you need any help.
Welcome to Reverse String on Exercism's Scala Track.
4
+
If you need help running the tests or submitting your code, check out `HELP.md`.
5
+
6
+
## Introduction
7
+
8
+
Reversing strings (reading them from right to left, rather than from left to right) is a surprisingly common task in programming.
9
+
10
+
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.
11
+
12
+
## Instructions
13
+
14
+
Your task is to reverse a given string.
15
+
16
+
Some examples:
17
+
18
+
- Turn `"stressed"` into `"desserts"`.
19
+
- Turn `"strops"` into `"sports"`.
20
+
- Turn `"racecar"` into `"racecar"`.
21
+
22
+
## Source
23
+
24
+
### Created by
25
+
26
+
-@BNAndras
27
+
28
+
### Based on
29
+
30
+
Introductory challenge to reverse an input string - https://medium.freecodecamp.org/how-to-reverse-a-string-in-javascript-in-3-different-ways-75e4763c68cb
0 commit comments