You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
I think you should use a Fibonnacci function as RPC example
def fib(n):
"""Fibonacci function"""
if n == 0:
return 0
elif n == 1:
return 1
else:
return fib(n-1) + fib(n-2)
Such an example could should how to use timeout (either on client side or on server side) because calculating fib(5) is quite short but fib(20) or fib(25) is much longer.
Kind regards
The text was updated successfully, but these errors were encountered:
Hello,
I think you should use a Fibonnacci function as RPC example
Such an example could should how to use timeout (either on client side or on server side) because calculating fib(5) is quite short but fib(20) or fib(25) is much longer.
Kind regards
The text was updated successfully, but these errors were encountered: