So I've got this list of lists of strings:
[["#@","**","#@"],["##","*%","##"]]
What I want to do is transform each inner list into a single string like this:
["#@**#@","##*%##"]
Resulting in a list of strings.
I've tried various combinations of map, foldr, and anonymous functions, but I can't for the life of me figure out how to achieve my desired result.