Guest User

Untitled

a guest
Dec 11th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1.  
  2.  
  3. fun find([],[]) =
  4. 1
  5. | find([],_) =
  6. 0
  7. | find(_, []) =
  8. 0
  9. | find(hd1::listOrd, hd2::nine) =
  10. if (hd1 = hd2) then
  11. find(listOrd, nine)
  12. else
  13. find(hd1::listOrd,nine)
  14. ;
Add Comment
Please, Sign In to add comment