Created
March 21, 2017 20:55
-
-
Save egeucak/0a0e661d24cd8e49c3fd41df65501104 to your computer and use it in GitHub Desktop.
The code snippet I used for calculating the execution time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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