From 1161f9a034de06a63538e3a9a0b7717098c744d9 Mon Sep 17 00:00:00 2001 From: Joshua Drake Date: Fri, 7 Apr 2023 08:13:49 -0500 Subject: Initial Commit --- Problem25.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Problem25.py (limited to 'Problem25.py') diff --git a/Problem25.py b/Problem25.py new file mode 100644 index 0000000..277f94c --- /dev/null +++ b/Problem25.py @@ -0,0 +1,12 @@ +#Finished 9/8/21 07:26 +def fib(n): + x,y,z,count = 1,1,0,2 + while len(str(z)) < n: + z = x+y + x = y + y = z + #print(z) + count+=1 + return count +print(fib(1000)) + -- cgit v1.2.3