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 timeit | |
from shakespeare import LETTERS, WORDS | |
if __name__ == '__main__': | |
# dict | |
t = timeit.Timer(stmt=""" | |
counter = dict() | |
for k in LETTERS: |
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
/* gist formatting */ | |
.line { | |
background-color: #f1fafb; | |
} | |
.gist-highlight { | |
border-left: 3ex solid #eee; | |
position: relative; | |
} | |
.gist-highlight pre { | |
counter-reset: linenumbers; |