Challenges - oliyh/learning-clojure GitHub Wiki
- Calculate the sum of
[1 2 3 4 5 ... 100](protip:(range 0 100)returns a list of 0-100) - Create a list of all the numbers divisible by 3 in the range
[1 2 3 4 5 ... 100] - 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}]
- For the list of people above, create a list with the year of their births
- Try some 4clojure problems