-
Notifications
You must be signed in to change notification settings - Fork 0
/
03_lists.clj
45 lines (33 loc) · 1.19 KB
/
03_lists.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
(ns koans.03-lists
(:require [koan-engine.core :refer :all]))
(meditations
"Lists can be expressed by function or a quoted form"
(= '(1 2 3 4 5) (list 1 2 3 4 5))
"They are Clojure seqs (sequences), so they allow access to the first"
(= 1 (first '(1 2 3 4 5)))
"As well as the rest"
(= '(2 3 4 5) (rest '(1 2 3 4 5)))
"Count your blessings"
(= 3 (count '(dracula dooku chocula)))
"Before they are gone"
(= 0 (count '()))
"The rest, when nothing is left, is empty"
(= '() (rest '(100)))
"Construction by adding an element to the front is easy"
(= '(:a :b :c :d :e) (cons :a '(:b :c :d :e)))
"Conjoining an element to a list isn't hard either"
(= '(:e :a :b :c :d) (conj '(:a :b :c :d) :e))
"You can use a list like a stack to get the first element"
(= ':a (peek '(:a :b :c :d :e)))
"Or the others"
(= '(:b :c :d :e) (pop '(:a :b :c :d :e)))
"But watch out if you try to pop nothing"
(= "No dice!" (try
(pop '())
(catch IllegalStateException e
"No dice!")))
"The rest of nothing isn't so strict"
(= '() (try
(rest '())
(catch IllegalStateException e
"No dice!"))))