def virfib(n):
if n == 0:
return 0
if n == 1:
return 1
else:
return virfib(n - 1) + virfib(n - 2)
virfib(3)
def count_partitions(n, m):
if n == 0:
return 1
elif n
count_partitions(4, 2)
def sum_digits(n):
if n
luhn_sum(5106)
Tip: Add &hide_function=true to hide the function code.
👋🏻 Are you comfortable publicly sharing your visualizations? I'd love to see how folks are using this tool.
Post a link in the discussions
or @ me on social media (Twitter, Mastodon)