Created
July 16, 2019 15:33
-
-
Save evanrinehart/b014ca31f2a949a90695f1456de27887 to your computer and use it in GitHub Desktop.
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
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