with a hat tip to Sublime Text 2 Shortcuts
| ⌘; | autocomplete |
| ⌘⌥B | instant replay |
| ⌘⌥E | search across all tabs |
with a hat tip to Sublime Text 2 Shortcuts
| ⌘; | autocomplete |
| ⌘⌥B | instant replay |
| ⌘⌥E | search across all tabs |
| import random | |
| import timeit | |
| from copy import deepcopy | |
| def inter_reduce(sets): | |
| return reduce(set.intersection, sets) | |
| def inter_for_deepcopy(sets): | |
| sets = iter(sets) | |
| result = deepcopy(next(sets)) |