Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am lfreeman on github.
* I am leon01 (https://keybase.io/leon01) on keybase.
* I have a public key whose fingerprint is 0935 A5CA D1CB 4638 E072 2299 F3DA ADBF F077 9C46
To claim this, I am signing this object:
@lfreeman
lfreeman / merge_sort.py
Created December 3, 2012 16:41
Merge Sort
import numpy.random as nprnd
import time
def timeit(method):
def timed(*args, **kwargs):
ts = time.time()
result = method(*args, **kwargs)
te = time.time()
print '%s (%s) %2.2f sec' % \