#161. addStar
addStar
Background
Description
Given a list of strings, return a list where each string has "*" added at its end.
Format
Input
Output
Samples
"a" "bb" "ccc"
["a*", "bb*", "ccc*"]
"hello" "there"
["hello*", "there*"]
"*"
["**"]
Limitation
1s, 1024KiB for each test case.