mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
172 B
Ruby
11 lines
172 B
Ruby
|
def tarai( x, y, z )
|
||
|
if x <= y
|
||
|
then y
|
||
|
else tarai(tarai(x-1, y, z),
|
||
|
tarai(y-1, z, x),
|
||
|
tarai(z-1, x, y))
|
||
|
end
|
||
|
end
|
||
|
|
||
|
tarai(12, 6, 0)
|