Skip to content

Commit

Permalink
Merge remote branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaddy committed May 16, 2014
2 parents cf79d52 + 96188dc commit 9e9d973
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions lightning-talks/4clojure.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
Lightning Talk: 4clojure
========================
# Lightning Talk: 4clojure


http://www.4clojure.com

### One way of doing 4clojure problems with LightTable

An example of working on [problem 61](http://www.4clojure.com/problem/61)
```clojure
(def ans
; your answer goes here
)

(ans [:a :b :c] [1 2 3]) ;{:a 1, :b 2, :c 3}
(ans [1 2 3 4] ["one" "two" "three"]) ;{1 "one", 2 "two", 3 "three"}
(ans [:foo :bar] ["foo" "bar" "baz"]) ;{:foo "foo", :bar "bar"}
```

### Back

Expand Down

0 comments on commit 9e9d973

Please sign in to comment.