4 lines
69 B
Ruby
4 lines
69 B
Ruby
|
|
(0..3).each do |m|
|
||
|
|
puts (0..6).map { |n| ack(m, n) }.join(' ')
|
||
|
|
end
|