Concatenate Strings easy
Strings

Write an R function solution(x) that concatenates the character vector x into a single string with no separator.

Example

solution(c("a", "b", "c"))  →  "abc"
solution.py
14px
📊 Test Results
Run your code to see test results here.