Functional Problem Solving (CSC 151 2015S) : EBoards
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] - [FAQ] [Teaching & Learning] [Grading] [Taking Notes] [Rubric] - [Calendar]
Current: [Assignment] [EBoard am] [EBoard pm] [Lab] [Outline] [Reading]
Sections: [Assignments] [EBoards am] [EBoards pm] [Labs] [Outlines] [Readings] - [Examples] [Handouts]
Reference: [Setup] [VM] [Errors] - [Functions A-Z] [Functions By Topic] - [Racket] [Scheme Report (R5RS)] [R6RS] [TSPL4]
Related Courses: [Davis (2013F)] [Rebelsky (2014F)] [Weinman (2014F)]
Misc: [Submit Questions] - [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] - [Book Office Hours] - [Issue Tracker (Course)]
Overview
How should I notate how long each problem took?
Something like
; Problem 2
; 30 minutes
I've seen students write
; Problem 2
; Started at 11:10:05, stopped at 11:21:14. Restarted
; at 11:55:01. Stopped at 11:55:02. My head hurts.
; ..
; Total of fifteen minutes and 11.5 seconds.
(irgb-redder mycolor) does not change mycolor.(irgb-darker (irgb-complement mycolor)) is not the same as
(irgb-complement (irgb-darker mycolor))Why use
(image-set-pixel! image1 0 0
(irgb-redder (image-get-pixel! image1 0 0)))
Because we don't need to use the same image or position
(image-set-pixel! image1 0 0 (irgb-redder (image-get-pixel! image2 0 0)))
(image-set-pixel! image1 2 3 (irgb-redder (image-get-pixel! image1 3 2)))