Skip to content

Instantly share code, notes, and snippets.

@erochest
Last active August 29, 2015 14:25
Show Gist options
  • Save erochest/ad0f06a025d3b07c9b8f to your computer and use it in GitHub Desktop.
Save erochest/ad0f06a025d3b07c9b8f to your computer and use it in GitHub Desktop.
import math
def dist(xs, ys):
return math.sqrt(sum((x-y)**2 for (x, y) in zip(xs, ys)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment