0
/ 50
Given an array of String
s, return a single String
that is made up of all strings in the array concatenated together in reverse order. For...
Given an array of String
s, 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 feedback will appear here when you check your answer.