Skip to content

Commit

Permalink
02/clj: add another sample tree
Browse files Browse the repository at this point in the history
  • Loading branch information
sjl committed Oct 13, 2011
1 parent e93b92d commit b9ea77f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions unit02/clojure/unit02/src/unit02/trees.clj
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,12 @@
(node :c [(node :f [(node :x [])
(node :y [(node :z [])])])
(node :g [])])]))

(def sample-tree-3 (node :a [(node :b [(node :d [(node :i [])
(node :j [])])
(node :e [])])
(node :q [(node :l [(node :n [(node :o [(node :p [])])])])
(node :m [(node :q [])])])
(node :c [(node :f [(node :x [])
(node :y [(node :z [])])])
(node :g [])])]))

0 comments on commit b9ea77f

Please sign in to comment.