The first working version:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns school) | |
(defn grade [school grade-num] | |
(get school grade-num [])) | |
(defn add [school name grade-num] | |
(assoc | |
school | |
grade-num | |
(conj (grade school grade-num) name))) | |
(defn sorted [school] | |
(into {} | |
(map | |
(fn [[grade students]] | |
[grade (sort students)]) | |
(sort-by key school)))) |
Trying to improve its readability I introduced two local helpers in the sorted function:
sort-by-grades and sort-students-by-name.
This is the resulting version:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns school) | |
(defn grade [school grade-num] | |
(get school grade-num [])) | |
(defn add [school name grade-num] | |
(assoc | |
school | |
grade-num | |
(conj (grade school grade-num) name))) | |
(defn sorted [school] | |
(let | |
[sort-by-grades | |
(partial sort-by key) | |
sort-students-by-name | |
(partial map | |
(fn [[grade students]] | |
[grade (sort students)]))] | |
(into | |
{} | |
(sort-students-by-name | |
(sort-by-grades school))))) |
Finally, I experimented with the -> macro to see its effect on readability and got to this last version:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns school) | |
(defn grade [school grade-num] | |
(get school grade-num [])) | |
(defn add [school name grade-num] | |
(assoc | |
school | |
grade-num | |
(conj (grade school grade-num) name))) | |
(defn sorted [school] | |
(let | |
[sort-by-grades | |
(partial sort-by key) | |
sort-students-by-name | |
(partial map | |
(fn [[grade students]] | |
[grade (sort students)]))] | |
(into | |
{} | |
(-> | |
school | |
sort-by-grades | |
sort-students-by-name)))) |
I think the -> macro is great.
You can nitpick my solution here or see all the exercises I've done so far in this repository.
No comments:
Post a Comment