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
# encoding: utf-8 | |
import time | |
import math | |
import random | |
__help__ = ''' | |
Benchmarking different sort methods against built-in sort | |
on 1M random 32-bit integers |
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 fib_rec(n): | |
if n <= 2: | |
return 1 | |
else: | |
return fib_rec(n - 1) + fib_rec(n - 2) | |
def fib_stack(n): | |
value_stack, op_stack = [], [n] | |
while True: |
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
Obtained 3 stack frames. | |
0 pypy-c 0x000000010ebaa8ed statprof_print_trace + 29 | |
1 ??? 0x0000000000000000 0x0 + 0 | |
2 pypy-c 0x000000010deada68 pypy_g_execute_token__star_2 + 136 |
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
Uqt_pRbR8rI.mp4 | |
31xZhj2uPr4.mp4 | |
n1EacrqyCs8.mp4 | |
6tV5NY1HoNA.mp4 | |
IZC33Tmy8Lo.mp4 | |
ysebYA6tDZ4.mp4 | |
_sAkAALHyEg.mp4 | |
e21oU80gwWc.mp4 | |
nsSvTTA0p8E.mp4 | |
UFcTLCttNRI.mp4 |
NewerOlder