Ruby Examples
This commit is contained in:
13
level6/60.rb
Executable file
13
level6/60.rb
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/ruby
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
=begin
|
||||
문자열 압축 (aaabb → a3b2)
|
||||
=end
|
||||
|
||||
str = "hello world"
|
||||
|
||||
|
||||
puts str.chars
|
||||
.chunk{|c| c.itself}
|
||||
.map{|c,a| "#{c}#{a.size}"}.join
|
||||
Reference in New Issue
Block a user