Functional Problem Solving (CSC 151 2016S) : EBoards
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] - [FAQ] [Teaching & Learning] [Grading] [Taking Notes] [Rubric]
Current: [Assignment] [EBoard] [Lab] [Outline] [Reading]
Sections: [Assignments] [EBoards] [Labs] [Outlines] [Readings] - [Examples] [Handouts]
Reference: [Setup] [Remote] [VM] [Errors] - [Functions A-Z] [Functions By Topic] - [Racket] [Scheme Report (R5RS)] [R6RS] [TSPL4]
Related Courses: [Curtsinger (2016S)] [Davis (2013F)] [Rebelsky (2015F)] [Weinman (2014F)]
Misc: [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] - [Issue Tracker (Course)]
Overview
How does Misc. extra credit work?
I apply it to either Academic or Peer, depending on which you have not yet maxed out.
What were the writeups for class 31 and 32?
I don't think there were any.
Does diet dew still taste good after eight bottles in two days?
I'm not sure it ever tasted good, but it certainly is no longer appealing.
Writeup for Class 33: Exercise 4b
Some sample inputs
> (tally-brights (map color->irgb (list "white" "black" "white" "white")))
> (tally-brights null)
> (tally-brights (map color->irgb (list "black" "white" "black" "white" "black")))
> (tally-brights (map color->irgb (list "black" "black" "black" "black" "black")))
> (tally-brights (map color->irgb (list "white" "white" "white" "white" "white")))
Improved
> (define white (color->irgb "white"))
> (define black (color->irgb "black"))
> (tally-brights (list white white black white black))
Writeup for Class 34: 3n, 4i