X493: Array - Reverse Concat Strings

[Based on an exercise at https://codeworkout.cs.vt.edu/]

Given an array of Strings, return a single String that is made up of all strings in the array concatenated together in reverse order. For example, if the array contains {"Athos", "Porthos", "Aramis"}, the string returned would be "AramisPorthosAthos".

Examples:

reverseConcatStrings({"Athos","Porthos","Aramis"}) -> "AramisPorthosAthos"

Your Answer:

Feedback

Your feedback will appear here when you check your answer.