mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-08 18:49:07 +01:00
9 lines
119 B
Ruby
9 lines
119 B
Ruby
def solution(string)
|
|
string.chars.map { |c|
|
|
if c == c.upcase
|
|
" " + c
|
|
else
|
|
c
|
|
end
|
|
}.join
|
|
end
|