-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path21_partition.clj
More file actions
21 lines (15 loc) · 847 Bytes
/
21_partition.clj
File metadata and controls
21 lines (15 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(ns koans.21-partition
(:require [koan-engine.core :refer :all]))
(meditations
"To split a collection you can use the partition function"
(= '((0 1) (2 3)) (partition 2 (range 4)))
"But watch out if there are not enough elements to form n sequences"
(= '((:a :b :c)) (partition 3 [:a :b :c :d :e]))
"You can use partition-all to include any leftovers too"
(= '((0 1 2) (3 4)) (partition-all 3 (range 5)))
"If you need to, you can start each sequence with an offset"
(= '((0 1 2) (5 6 7) (10 11 12)) (partition 3 5 (range 13)))
"Consider padding the last sequence with some default values..."
(= '((0 1 2) (3 4 5) (6 :hello)) (partition 3 3 [:hello] (range 7)))
"... but notice that they will only pad up to the given sequence length"
(= '((0 1 2) (3 4 5) (6 :these :are)) (partition 3 3 [:these :are "my" "words"] (range 7))))