Skip to content

OCaml : Fibonacci Sequence #19

New issue

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

Merged
merged 3 commits into from
Dec 31, 2024
Merged

OCaml : Fibonacci Sequence #19

merged 3 commits into from
Dec 31, 2024

Conversation

kimpro82
Copy link
Owner

  • Run

    Standard Recursive Method : 1, 1, 2, 3, 5, 8, 13, 21, 34, 55
    Tail Recursive Method     : 1, 1, 2, 3, 5, 8, 13, 21, 34, 55
    Bottom-up Method          : 1, 1, 2, 3, 5, 8, 13, 21, 34, 55

@kimpro82 kimpro82 added the OCaml label Dec 30, 2024
@kimpro82 kimpro82 linked an issue Dec 30, 2024 that may be closed by this pull request
@kimpro82 kimpro82 marked this pull request as ready for review December 31, 2024 10:22
Copy link
Owner Author

@kimpro82 kimpro82 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good

@kimpro82 kimpro82 merged commit 1967e5d into main Dec 31, 2024
@kimpro82 kimpro82 deleted the mlFibonacciSequence branch December 31, 2024 10:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Development

Successfully merging this pull request may close these issues.

OCaml : Fibonacci Sequence
1 participant