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