Here are some challenges to see what you have learned so far about Collection types map and vector.
Define information about the group you are in using a map, using Clojure keywords as the keys of the map and strings or numbers for the values.
Remember that a valid map must have a key and a value as a pair. You can have multiple key-value pairs in a map.
Create a map to define one member of your study group - including name, age, clojure-skills
()
Use a map to define your study group’s members, where the members can be a vector of maps or have a unique name
()
Once you have completed the exercises, take a look at the suggested examples.