Advertisement
Guest User

Untitled

a guest
Feb 2nd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.13 KB | None | 0 0
  1. let rec (<=.) xs xy =
  2.   match (xs, ys) with
  3.   | ([], _) -> true
  4.   | (_, []) -> false
  5.   | (x::xs', y::ys') -> x <= y && xs' <=. ys'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement