1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-18 21:56:57 +02:00
CodeWars/6kyu/break_camel_case/solution.rb

10 lines
119 B
Ruby
Raw Permalink Normal View History

def solution(string)
string.chars.map { |c|
if c == c.upcase
" " + c
else
c
end
}.join
end