EddyRay23 / My-Bear

0 stars 0 forks source link

[def fibonacci(n) #1

Open EddyRay23 opened 1 year ago

EddyRay23 commented 1 year ago

[def fibonacci(n) return n if ( 0..1 ).include? n (fibonacci(n - 1) + fibonacci(n - 2)) #recursive calls end]()

Originally posted by @Onlyfgirl in https://github.com/Onlyfgirl/onlyfans/issues/1

EddyRay23 commented 1 year ago

[def fibonacci(n) return n if ( 0..1 ).include? n (fibonacci(n - 1) + fibonacci(n - 2)) #recursive calls end]()

Originally posted by @Onlyfgirl in https://github.com/Onlyfgirl/onlyfans/issues/1