This evening you have been invited to host Strictly and unfortunately the computer that manages the scores has broken. So you also need to write a simple Clojure program to manage the scores


Lets take what we have learned about maps so far and represent the dancing pairs and scores from the BBC TV show, Strictly.

This exercise will challenge how well you understand creating maps, as well as the options to update maps in Clojure.

Model a dance couple and their first score


{}

Model all the dance couples and their scores after the first round



Add the second round scores for the first pair of dancers


;; (assoc {} :score "new total")
;; (update )

FIXME: Create suggested answers

Once you have completed these exercises, feel free to take a look at some suggested answers