Skip to content

Instantly share code, notes, and snippets.

@Vresod
Created December 19, 2019 01:02
Show Gist options
  • Save Vresod/a1d483ea4ccba3716103b16a2a48e11d to your computer and use it in GitHub Desktop.
Save Vresod/a1d483ea4ccba3716103b16a2a48e11d to your computer and use it in GitHub Desktop.
Bad Math in python.
from time import sleep, time
def add(n1, n2):
start = time()
sleep(n1)
sleep(n2)
return int(time() - start)
def multiply(n1,n2):
n3 = n1
for i in range(1,n2):
n1 += n3
return n1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment