Challenges - oliyh/learning-clojure GitHub Wiki

  1. Calculate the sum of [1 2 3 4 5 ... 100] (protip: (range 0 100) returns a list of 0-100)
  2. Create a list of all the numbers divisible by 3 in the range [1 2 3 4 5 ... 100]
  3. Create a list of the names of these people:
[{:name "Frodo" :age 44}
 {:name "Toto" :age 58}
 {:name "Bono" :age 52}
 {:name "Hans Solo" :age 28}
 {:name "Marco Polo" :age 259}]
  1. For the list of people above, create a list with the year of their births
  2. Try some 4clojure problems