0
votes
1answer
60 views
Python func_dict used to memoize; other useful tricks?
A Python function object has an attribute dictionary called func_dict which is visible from outside the function and is mutable, but which is not modified when the function is call …
1
vote
2answers
60 views
Understanding an error message while writing code for a Fibonacci program
My apologies in advance should I butcher any Python vocabulary, this is my first programming class and we are not permitted to post or share our code. I will do my best to explain …
1
vote
8answers
261 views
What is Sum of Even Terms In Fibonacci (<4million)? [Large Value Datatype Confusion]
By starting with 1 and 2, the first 10 terms of Fibonacci Series will be:
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
Find the sum of all the even-valued terms in the sequence which …
8
votes
29answers
2k views
Fibonacci Code Golf
Generate the Fibonacci sequence in the fewest amount of characters possible. Any language is OK, except for one that you define with one operator, f, which prints the Fibonacci num …
1
vote
7answers
317 views
Finding Fibonacci sequence in C#. [Project Euler Exercise]
Hi there, I'm having some trouble with this problem in Project Euler.
Here's what the question asks:
Each new term in the Fibonacci sequence is generated by adding the previous t …
5
votes
7answers
545 views
nth fibonacci number in sublinear time
Is there any algorithm to compute the nth fibonacci number in sub linear time?
4
votes
5answers
531 views
Recursive Fibonacci
I'm having a hard time understanding why
#include <iostream>
using namespace std;
int fib(int x) {
if (x == 1) {
return 1;
} else {
return fib(x-1) …
0
votes
6answers
1k views
How to write the Fibonacci Sequence in Python Part II [closed]
Part 1: http://stackoverflow.com/questions/494594/how-to-write-the-fibonacci-sequence-in-python
EDIT!
I have coded the program wrongly. Instead of returning the Fibonacci numbers …
-2
votes
0answers
234 views
run time analysis for fibonacci recursive algorithm [closed]
t1= run time for fib(1)
t2= runtime for fib(2)
a1=((1+sqroot(5))/2)^n a2=((1-sqroot(5))/2)^n
fib(n)= 1/sqroot(5)* ( a1^n - a2^n)
fib(n)/a1^n = 1/sqroot(5)*(1- (a1^n/a2^n))
as …
1
vote
6answers
606 views
Lambda Expressions in Delphi Prism/Oxygene
I have been experimenting with Lambda expressions in Oxygene. Very simple recursive lambda expression to calculate a fibonacci number :
var fib : Func<int32, int32>;
fib := …
1
vote
6answers
162 views
Fib sequence, is fib 0 = 0 or 1 ?
I'm doing a task in a subject were fib 0 is defined to = 1. But that can't be right? Fib 0 is 0?
Program with fib 0 = 1; spits out fib 4 = 5
Program with fib 0 = 0; spits out fib …
0
votes
2answers
141 views
Project Euler N2 - Fibonacci algorithm isnt working properly.
Each new term in the Fibonacci
sequence is generated by adding the
previous two terms. By starting with 1
and 2, the first 10 terms will be:
1, 2, 3, 5, 8, 13, 21, 34 …
11
votes
22answers
1k views
What’s your favorite implementation of producing the fibonacci sequence?
Best, most creative, most clever, fastest, smallest, written in weirdest language, etc etc.
For those not familiar with this staple of programming exam question / interview questi …
4
votes
3answers
414 views
Generating Fibonacci numbers in Haskell?
In Haskell, how can I generate Fibonacci numbers based on the property that the nth Fibonacci number is equal to the (n-2)th Fibonacci number plus the (n-1)th Fibonacci number?
I' …
1
vote
5answers
381 views
need help with c# , fibonacci
hi , urm... i am practising c# console application , and am trying to get the function to verify if the number appears in a fibonacci series or not but im getting errors
what i di …
