Skip to content
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

Recursion; #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

sophiabaldonado
Copy link

Sophia Baldonado

All recursion problems except travel. Started working on travel but haven't finished.

if n == 1 || n == 0
return 1
end
return n * fact(n - 1)
end
Copy link

Choose a reason for hiding this comment

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

Good solution.

@sophiabaldonado
Copy link
Author

@malderi Thank you for the review!

@malderi
Copy link

malderi commented May 16, 2016

Happy to help! Crystal asked me to jump in on some.

-Brandon

On Mon, May 16, 2016 at 9:16 AM, sophia [email protected] wrote:

@malderi https://github.com/malderi Thank you for the review!


You are receiving this because you were mentioned.
Reply to this email directly or view it on GitHub
#9 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants