mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
159 B
Ruby
14 lines
159 B
Ruby
|
|
||
|
def tak x, y, z
|
||
|
unless y < x
|
||
|
z
|
||
|
else
|
||
|
tak( tak(x-1, y, z),
|
||
|
tak(y-1, z, x),
|
||
|
tak(z-1, x, y))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
tak(18, 9, 0)
|
||
|
|