Advertisement
Guest User

Untitled

a guest
May 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.25 KB | None | 0 0
  1. let rec usun_po_15_30 (list:Wydarzenie list) =
  2.     match list with
  3.     | [] -> []
  4.     | x :: xs ->
  5.         if x.Godzina.Godzina*60+x.Godzina.Minuta >= 15*60+30 then
  6.             usun_po_15_30 xs
  7.         else
  8.             x::xs
  9. usun_po_15_30 lista_wyd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement