Skip to content

Instantly share code, notes, and snippets.

@egeucak
Created March 21, 2017 20:55
Show Gist options
  • Save egeucak/0a0e661d24cd8e49c3fd41df65501104 to your computer and use it in GitHub Desktop.
Save egeucak/0a0e661d24cd8e49c3fd41df65501104 to your computer and use it in GitHub Desktop.
The code snippet I used for calculating the execution time
import math
def islem(N):
return (N*math.log(N,2) + 9*N + 55)
print(islem(220) / 1000000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment