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 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 order. For example, if the array contains {"John", "Paul", "George", "Ringo"}, the string returned would be "JohnPaulGeorgeRingo".
Examples:
concatStrings({"John", "Paul", "George", "Ringo"}) -> "JohnPaulGeorgeRingo"
concatStrings({"One", "Two", "Three"}) -> "OneTwoThree"
Your feedback will appear here when you check your answer.