File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 1111cats = {
1212 "accuracy" : ["def accuracy" , "def wpm" ],
1313 "autocorrect" : ["def autocorrect" , "def shifty_shifts" ],
14+ "fastest_words" : ["def fastest_words(" , "def game" ]
1415}
1516
1617ants = {
Original file line number Diff line number Diff line change 150150 "good-zip-use" : "Great use of the `zip` function!" ,
151151 "good-dict-use" : "Great use of a dictionary to utilize it's `.get` method as the `key` for the `min` function!" ,
152152 },
153+ "fastest_words" : {
154+ "abstraction-barrier" : "Make sure you aren't violating the abstraction barrier. You should use the provided selector "
155+ "functions instead." ,
156+ "many-loops" : "This solution is a bit complex... You shouldn't need more than 3 for loops." ,
157+ "good-min-key" : "Nice use of the min function with a key! This makes the code not only efficient, but easy to read "
158+ "and understand." ,
159+ },
153160}
154161
155162ants_templates = {
You can’t perform that action at this time.
0 commit comments