We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
let rec fib n = if n<2 then n else fib(n-1) + fib(n-2);;
The text was updated successfully, but these errors were encountered:
ackermann: let rec ack m n = match [m;n] with [0;_] -> n+1 | [_;0] -> ack (m-1) 1 | [_;_] -> ack (m-1) (ack m (n-1))
let rec ack m n = match [m;n] with [0;_] -> n+1 | [_;0] -> ack (m-1) 1 | [_;_] -> ack (m-1) (ack m (n-1))
Sorry, something went wrong.
No branches or pull requests
let rec fib n = if n<2 then n else fib(n-1) + fib(n-2);;
The text was updated successfully, but these errors were encountered: