Skip to content

Commit 784cee0

Browse files
authored
Create 15.clj
1 parent ba7ac10 commit 784cee0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

15.clj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
;; Title: Double Down
2+
;; Link: http://www.4clojure.com/problem/15
3+
;; Description: Intro to functions
4+
5+
;; QUESTION/TEST CODE
6+
7+
;; (= (__ 2) 4)
8+
;; (= (__ 3) 6)
9+
;; (= (__ 11) 22)
10+
;; (= (__ 7) 14)
11+
12+
;; SOLUTION CODE
13+
14+
#(* % 2)

0 commit comments

Comments
 (0)