Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save evanrinehart/b014ca31f2a949a90695f1456de27887 to your computer and use it in GitHub Desktop.
Save evanrinehart/b014ca31f2a949a90695f1456de27887 to your computer and use it in GitHub Desktop.
minn a@(x:xs) b@(y:ys) = case compare x y of
LT -> a
GT -> b
EQ -> x : minn xs ys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment