A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Reverse String page! Here, you'll find a description of the project as well as a list of sample programs written in various languages.
This article was written by:
While Hello World is simple, it often does not show off many interesting features of a language. Fortunately, this repository shares more samples than Hello World. One of these more complex programs is known as Reverse a String.
In this repository, the algorithm must reverse ASCII strings. Do NOT worry about reversing a string in the general case. For instance, if a string contains surrogate pairs, it's okay if the solution corrupts the string during reversal.
Despite the explicit name, there are some rules in place for consistency. When writing a Reverse a String program, the following rules should apply:
In other words, the program should get a string from the command line and reverse it using language utilities only. Acceptable language utilities include language features and built-in libraries.
External dependencies are unacceptable. Remember, the goal is to show off language features and utilities.
Every project in the Sample Programs repo should be tested. In this section, we specify the set of tests specific to Reverse String.
Description | Input | Output |
---|---|---|
No Input | "" | |
Empty Input | "" | "" |
Ascii String | "Hello, World" | "dlroW ,olleH" |
There are 47 articles: