Created
October 21, 2016 09:47
-
-
Save yvan-sraka/5b57df498fa010bc830e973356fc7179 to your computer and use it in GitHub Desktop.
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
def ma_super_function(n): | |
print("start", n) | |
if n > 0: | |
ma_super_function(n - 1) | |
print("end", n) | |
ma_super_function(10) | |
# CPU | |
# 12 + 23 | |
# GPU | |
# 2.7878230 | |
#Chiffrement par décallage | |
"k'bepsf mft dppljft bv dipdpmbu" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment