Pabl0o0

Untitled

Oct 25th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. let rec indeksy xs =
  2. match xs with
  3. | x::y::z::tail ->
  4. let a,b,c = indeksy tail in
  5. x::a, y::b, z::c
  6. | x::[] -> [x],[],[]
  7. | x::y::[]->[x],[y],[]
  8. | [] -> [],[],[];;
Advertisement
Add Comment
Please, Sign In to add comment