6 lines
219 B
Python
6 lines
219 B
Python
import datetime
|
|
import imp
|
|
##what is this code doing? figure out how to call your fibonacci functions in this file.
|
|
fibonacci = imp.load_source('fibonacci', '../2-is-fibonacci/fibonacci.py')
|
|
|
|
def benchmark(func, times): |