summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/writeup2/examples/fib.py
diff options
context:
space:
mode:
Diffstat (limited to 'comp/lucas-standen-NEA/writeup2/examples/fib.py')
-rw-r--r--comp/lucas-standen-NEA/writeup2/examples/fib.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/comp/lucas-standen-NEA/writeup2/examples/fib.py b/comp/lucas-standen-NEA/writeup2/examples/fib.py
deleted file mode 100644
index f6823af..0000000
--- a/comp/lucas-standen-NEA/writeup2/examples/fib.py
+++ /dev/null
@@ -1,8 +0,0 @@
-def fib(n):
- if (n < 2):
- return n
-
- return fib(n-1) + fib(n-2)
-
-val = 30
-print(fib(val))