aboutsummaryrefslogtreecommitdiff
path: root/Semestr 3/anm/numerki/lista2
diff options
context:
space:
mode:
authorFranciszek Malinka <franciszek.malinka@gmail.com>2021-10-05 21:49:54 +0200
committerFranciszek Malinka <franciszek.malinka@gmail.com>2021-10-05 21:49:54 +0200
commitc5fcf7179a83ef65c86c6a4a390029149e518649 (patch)
treed29ffc5b86a0d257453cedcf87d91a13d8bf3b0d /Semestr 3/anm/numerki/lista2
parentf8a88b6a4aba1f66d04711a9330eaba49a50c463 (diff)
Duzy commit ze smieciami
Diffstat (limited to 'Semestr 3/anm/numerki/lista2')
-rw-r--r--Semestr 3/anm/numerki/lista2/rozw.ml33
1 files changed, 0 insertions, 33 deletions
diff --git a/Semestr 3/anm/numerki/lista2/rozw.ml b/Semestr 3/anm/numerki/lista2/rozw.ml
deleted file mode 100644
index f946051..0000000
--- a/Semestr 3/anm/numerki/lista2/rozw.ml
+++ /dev/null
@@ -1,33 +0,0 @@
-(* Zadanie 1 *)
-
-let sublists l =
- let rec backtrack sl = function
- | [] -> [sl]
- | hd :: tl -> (backtrack (sl @ [hd]) tl) @ backtrack sl tl
- in backtrack [] l
-
-
-(* Zadanie 2 *)
-
-(* Znalezione tutaj: https://stackoverflow.com/questions/2710233/how-to-get-a-sub-list-from-a-list-in-ocaml *)
-
-let rec super_sublist b e = function
- | [] -> failwith "empty list"
- | hd :: tl ->
- let tail = if e <= 1 then [] else super_sublist (b - 1) (e - 1) tl in
- if b > 0 then tail else hd :: tail
-
-(* Moje rozwiązanie: *)
-
-let rec sublist b e l =
- let rec suffix idx l =
- if idx = 0 then l else suffix (idx - 1) (List.tl l) in
- let rec prefix idx l =
- if idx = 0 then [] else (List.hd l) :: (prefix (idx - 1) (List.tl l)) in
- prefix (e - 1) (suffix b l)
-
-let cycle_with_sub sublist_fun xs n =
- sublist_fun n (n + (List.length xs)) (xs @ xs)
-
-let super_cycle = cycle_with_sub super_sublist
-let cycle = cycle_with_sub sublist