27 lines
484 B
Markdown
27 lines
484 B
Markdown
|
# Reverse String
|
||
|
|
||
|
Welcome to Reverse String on Exercism's Dart Track.
|
||
|
If you need help running the tests or submitting your code, check out `HELP.md`.
|
||
|
|
||
|
## Instructions
|
||
|
|
||
|
Reverse a string
|
||
|
|
||
|
For example:
|
||
|
input: "cool"
|
||
|
output: "looc"
|
||
|
|
||
|
## Source
|
||
|
|
||
|
### Created by
|
||
|
|
||
|
- @amscotti
|
||
|
|
||
|
### Contributed to by
|
||
|
|
||
|
- @Zureka
|
||
|
- @kytrinyx
|
||
|
|
||
|
### 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
|