Skip to content

Instantly share code, notes, and snippets.

@ifukazoo
Created March 7, 2015 20:39
Show Gist options
  • Save ifukazoo/657c2dfa56377700ce0d to your computer and use it in GitHub Desktop.
Save ifukazoo/657c2dfa56377700ce0d to your computer and use it in GitHub Desktop.
末尾再帰
# 再帰部が手続だけ
def fact_trailrec(n, p)
if n == 1
p
else
fact_r(n - 1, n * p)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment